Files
ferro-ta/.github/ISSUE_TEMPLATE/indicator_request.md
T
2026-03-23 23:34:28 +05:30

1.7 KiB
Raw Blame History

name, about, title, labels, assignees
name about title labels assignees
Indicator request Request a new technical analysis indicator or a variant of an existing one [Indicator] new-indicator

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

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