Elyas Najibzadeh
Elyas Najibzadeh
i have managed to create a CMO indicator (with the help of [pandas_ta](https://github.com/twopirllc/pandas-ta/blob/main/pandas_ta/momentum/cmo.py)) identical to tradingview CMO using the code below ``` mom = data.close.diff() positive = mom.copy().clip(lower=0).rolling(self.timeperiod).sum() negative =...
for a little more in depth look check this [comment](https://github.com/TA-Lib/ta-lib-python/issues/594#issuecomment-1560640283)
Hi @jpivarski thanks for the detailed response the solutions you provided are all so good and also I DO agree that it is not high-priority but it would be awesome...