Can I use the TA-Lib library on my own data i.e. data accumultated upto a certain point in a backtest? I was thinking that TA-Lib would use a DataFrame as input and in my algo I accumulate closing price data in this form:
print context.df_close.head()
2 24
2013-01-02 00:00:00+00:00 8.9700 548.7100
2013-01-03 00:00:00+00:00 9.0700 542.3800
2013-01-04 00:00:00+00:00 9.2500 527.0100
2013-01-07 00:00:00+00:00 9.1000 523.9701
2013-01-08 00:00:00+00:00 9.0988 525.1900
but does it actually need a DataPanel?
P.