Technical Indicators
quantlib-ml
Technical Indicators
Calculates technical indicators for financial time series: RSI, EMA, MACD, Bollinger Bands, ATR, ADX, CCI, OBV. Essential for trading strategies, feature engineering, and market analysis. [Tier: ENTERPRISE, Credits: 10]
POST
Technical Indicators
Authorizations
API key for authentication. Get your key at https://api.fincept.in/auth/register
Body
application/json
Price series (close prices)
Example:
[
100,
102,
101,
105,
107,
106,
110,
108,
112,
115
]Technical indicator to calculate
Available options:
rsi, ema, macd, bollinger, atr, adx, cci, obv Example:
"rsi"
Indicator period/window
Example:
14
High prices (for ATR, ADX, CCI)
Example:
[
101,
103,
102,
106,
108,
107,
111,
109,
113,
116
]Low prices (for ATR, ADX, CCI)
Example:
[
99,
101,
100,
104,
106,
105,
109,
107,
111,
114
]Volume data (for OBV)
Example:
[
1000,
1200,
900,
1500,
1300,
1100,
1400,
1000,
1600,
1800
]