For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Pandas extend datafeeds error
-
class Mypandas(bt.feeds.PandasData): # Add a 'pe' line to the inherited ones from the base class lines = ('timestamp',) # openinterest in GenericCSVData has index 7 ... add 1 # add the parameter to the parameters inherited from the base class params = (('timestamp', 8),) data = Mypandas(dataname=df) # Add the Data Feed to Cerebro cerebro.adddata(data)
trying to extend one line, but give me a error.