I'm following this documentation: https://buildmedia.readthedocs.org/media/pdf/technical-analysis-library-in-python/latest/technical-analysis-library-in-python.pdf
Specifically page 9 of the PDF. Copying this code I get a type error. I'm not sure if that means I should edit my data file (which is just standard stock data) or edit the fillna portion of the code.
from ta import *
df = pd.read_csv('VRAY.csv', sep=',')
df = utils.dropna(df)
df = add_all_ta_features(df,"Date","Open","High","Low","Close","Adj_Close","Volume", fillna=True)
This is the error:
Traceback (most recent call last): File "/home/toni/PycharmProjects/PyPractice/stockTA/techanal.py", line 7, in df = add_all_ta_features(df,"Date","Open","High","Low","Close","Adj_Close","Volume", fillna=True) TypeError: add_all_ta_features() got multiple values for keyword argument 'fillna'