0

这是一个SMA交叉策略的例子,我们使用的原因是什么,self.setUseAdjustedValues(True) 它是如何工作的?

from pyalgotrade import strategy
from pyalgotrade.technical import ma
from pyalgotrade.technical import cross


class SMACrossOver(strategy.BacktestingStrategy):
    def __init__(self, feed, instrument, smaPeriod):
        strategy.BacktestingStrategy.__init__(self, feed)
        self.__instrument = instrument
        self.__position = None
        # We'll use adjusted close values instead of regular close values.
        self.setUseAdjustedValues(True)
        self.__prices = feed[instrument].getPriceDataSeries()
        self.__sma = ma.SMA(self.__prices, smaPeriod)

    def getSMA(self):
        return self.__sma

    def onEnterCanceled(self, position):
        self.__position = None

    def onExitOk(self, position):
        self.__position = None

    def onExitCanceled(self, position):
        # If the exit was canceled, re-submit it.
        self.__position.exitMarket()

    def onBars(self, bars):
        # If a position was not opened, check if we should enter a long position.
        if self.__position is None:
            if cross.cross_above(self.__prices, self.__sma) > 0:
                shares = int(self.getBroker().getCash() * 0.9 / bars[self.__instrument].getPrice())
                # Enter a buy market order. The order is good till canceled.
                self.__position = self.enterLong(self.__instrument, shares, True)
        # Check if we have to exit the position.
        elif not self.__position.exitActive() and cross.cross_below(self.__prices, self.__sma) > 0:
            self.__position.exitMarket()
4

2 回答 2

2

如果您使用常规收盘价而不是调整后的收盘价,您的策略可能会对价格变化做出反应,这实际上是股票分割的结果,而不是由于常规交易活动导致的价格变化。

于 2015-04-06T01:17:09.320 回答
0

据我了解并试图简化它,假设价格份额为 100。

-> 次日以 1:2 分割股票意味着 2 股,每股 50 股。此价格变化不是由于交易活动,没有交易涉及降低此价格。所以 setUseAdjustedValues(True) 处理这种情况。

于 2019-03-02T12:26:57.723 回答