@prnvat8197 Aah, finally read the documentation thoroughly and did some tickering around, the Generic csv data is required as input
data = btfeeds.GenericCSVData(
dataname=datapath,
fromdate=datetime.datetime(2021, 7, 1),
todate=datetime.datetime(2021, 7, 16),
nullvalue=0.0,
dtformat=('%Y-%m-%d %H:%M:%S'),
timeframe = bt.TimeFrame.Minutes,
compression = 15,
Datetime=0,
High=2,
Low=3,
Open=1,
Close=4,
Volume=7,
Adj_Close=6)
Thanks to everyone who replied to this thread! Really appreciate the community :D