Keep getting an error [AssertionError: volume is not double] when using ta-lib on a dataframe (see link below). Any idea why?
df['Chaikin A/D'] = talib.AD(high, low, close, volume)
AssertionError Traceback (most recent call last)
----> 1 ta_ind(apl)
67
68 # Volume
---> 69 df['Chaikin A/D'] = talib.AD(high, low, close, volume)
70
71 df = df.sort(ascending=False)
C:\Anaconda\lib\site-packages\talib\func.pyd in talib.func.AD (talib\func.c:3321)()
AssertionError: volume is not double