I'm receiving the following error when executing a zipline backtest against futures data:
Exception ignored in: 'zipline.assets.continuous_futures.OrderedContracts.contract_before_auto_close'
quantrocket_zipline_1|AttributeError: 'NoneType' object has no attribute 'next'
I've defined the universe of symbols as continuations with:
markets = ['CL', 'GC', 'HG', 'HO', 'NG', 'PA', 'PL', 'RB', 'SI']
context.universe = [continuous_future(market, roll = 'calendar') for market in markets]
Is there something I need to do with the order of the contracts prior to ingesting?
David