import backtrader as bt
cerebro = bt.Cerebro()
data = bt.feeds.GenericCSVData(
dataname='data.csv',
# Do not pass values before this date
fromdate=dt.datetime(2000, 1, 1),
# Do not pass values after this date
todate=dt.datetime.now().date(),
datetime=0,
high=5,
low=6,
open=4,
close=8,
volume=10,
openinterest=-1
)
cerebro.adddata(data)
How to check wheater data is fed properly? Such as print open
and close
? How to plot it (candle)?
You can see your data by printing a log from
next
. This is a standard setup I use.To plot you just use
cerebro.plot()
after you run cerebro.