Hi Everyone
I have loaded my csv data to the "data" object as shown below
data = btfeeds.GenericCSVData(
dataname='E:\\Algorthmic Trading\\Data\\BIOCON\\BIOCON.day.csv',
# fromdate=dt.datetime(2020, 7, 6),
# todate=dt.datetime(2022, 7, 6),
nullvalue=0.0,
dtformat=('%Y-%m-%d %H:%M:%S+05:30'),
datetime=0,
open=1,
high=2,
low=3,
close=4,
volume=5,
openinterest=-1)
I am developing an indicator by following one of the articles and in that article for indicator development they are using Pandas Data Frame for all calculations. I am not sure how to convert this "data" object which is of type "GenericCSVData" to Pandas Data Frame
I tried the below way, but it's not working
df = pd.DataFrame(data)
It's giving me below error
ValueError: DataFrame constructor not properly called!