--- name: Indicator request about: Request a new technical analysis indicator or a variant of an existing one title: "[Indicator] " labels: new-indicator assignees: '' --- ## Indicator Name ## Category - [ ] Overlap Studies (moving averages, bands) - [ ] Momentum Indicators - [ ] Volatility Indicators - [ ] Volume Indicators - [ ] Price Transform - [ ] Statistic Functions - [ ] Cycle Indicators - [ ] Extended / Multi-output Indicators - [ ] Other: ___ ## Reference / Formula **Formula:** ``` # e.g. # CMO = 100 × (SumUp − SumDown) / (SumUp + SumDown) ``` **Reference:** ## TA-Lib equivalent - [ ] This indicator is in TA-Lib as: `TALIB_FUNCTION_NAME` - [ ] This indicator is NOT in TA-Lib (extension indicator) ## Expected API ```python from ferro_ta import MY_INDICATOR import numpy as np close = np.array([...]) result = MY_INDICATOR(close, timeperiod=14) # result: np.ndarray of float64, same length as close ``` ## Use Case ## Priority / Urgency - [ ] Nice to have - [ ] Would significantly improve my workflow - [ ] Blocking me from using ferro_ta ## Willingness to Contribute - [ ] I'd like to implement this myself (see `CONTRIBUTING.md`) - [ ] I can help test / validate the implementation - [ ] I just want to request it — up to the maintainers