Получение ошибки при попытке разместить ордер с фьючерсной бумагой Quantopian
Поэтому я перехожу к изучению квантовой торговли фьючерсами и столкнулся с проблемой, когда я не могу разместить бумажную сделку. Ошибка говорит о том, что он не может указать символ в order
метод. Я надеюсь, что кто-то может дать мне ответ, чтобы помочь мне понять, что происходит.
def initialize(context):
# Dow Jones E-Mini Continuous Future
context.future = continuous_future('YM')
schedule_function(daily_func, date_rules.every_day(), time_rules.market_open())
def daily_func(context, data):
ym_active = data.history(context.future, 'price', 50, '1m')
log.info(ym_active)
sma_50 = ym_active.mean()
sma_20 = ym_active[-20:].mean()
if sma_20 > sma_50:
#I am running into a problem where it says that I have to specify the contract.
order(context.future, 1, style=MarketOrder)
elif sma_20 < sma_50:
#I am running into a problem here too.
order(context.future, -1, style=MarketOrder)