Technical indicators
Forty five price and volume indicators recomputed for every listed equity each trading day.
- Cadence
- Daily after the close
- Coverage
- About 18,500 listed equities and funds
- History
- Daily history for the trailing year at launch
- Availability
- Live
What you get
- Moving averages across the common windows, RSI, MACD with signal and histogram, stochastic oscillator, Bollinger bands, average true range, on balance volume, accumulation and distribution, Aroon, Williams %R, money flow, Chaikin money flow, rate of change and pivot levels.
- All computed from the same adjusted daily bars, so values are consistent across tickers and days.
What makes it reliable
- Computed from adjusted daily prices, so values are comparable across tickers and across time.
- Windows follow the conventional defaults; indicators are grouped by family and the window is part of the key, for example moving_averages.sma.20 or momentum_oscillators.rsi_14.
curl -H "Authorization: Bearer fsd_live_your_key" \
https://fundspecdata.io/v3/v3/technicals/AAPL{
"ticker": "AAPL",
"date": "2026-09-03",
"close": 328.21,
"moving_averages": {
"sma": {
"5": 322.97,
"10": 317.25,
"20": 312.81
},
"ema": {
"5": 323.26,
"26": 315.82
}
},
"momentum_oscillators": {
"rsi_14": 61.2
},
"trend": {
"macd": {
"line": 4.12,
"signal": 3.31,
"histogram": 0.81
}
}
}Field dictionary
Key fields. The complete list with types is in the API reference, generated from the same definitions that validate every response.
| Field | Type | Description |
|---|---|---|
| date | date | Trading day of the bar the indicators were computed on. |
| close | number | Adjusted close of that bar. |
| moving_averages.sma | object | Simple moving averages keyed by window, for example 20, 50, 200. |
| moving_averages.ema | object | Exponential moving averages keyed by window. |
| momentum_oscillators.rsi_14 | number | Fourteen day relative strength index. |
| momentum_oscillators.stochastic | object | Stochastic oscillator k and d. |
| trend.macd | object | MACD line, signal line and histogram. |
| trend.adx | object | Average directional index with plus and minus directional indicators. |
| volatility.atr_14 | number | Fourteen day average true range. |
| volatility.bollinger | object | Upper, middle and lower Bollinger bands. |
| volume.obv | number | Cumulative on balance volume. |
| levels | object | Pivot point with two resistance and two support levels. |