Andy Brewer
Results
2
comments of
Andy Brewer
Not sure if this is related but Kama has this line: `kama = self._check_fillna(kama, value=self._close)` here: https://github.com/bukosabino/ta/blob/master/ta/momentum.py#L296 Most other functions pass `0` or `1` for the `value` param of `_check_fillna`,...
Maybe a similar issue with pandas_ta: ```python import pandas as pd # https://github.com/twopirllc/pandas-ta import pandas_ta as ta df = pd.read_csv('data.csv') df.ta.ad() ``` produces: Unused pandas_ta imported as ta