FundSpec Data

Data catalog

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.
Request
curl -H "Authorization: Bearer fsd_live_your_key" \
  https://fundspecdata.io/v3/v3/technicals/AAPL
Response (excerpt)
{
  "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.

FieldTypeDescription
datedateTrading day of the bar the indicators were computed on.
closenumberAdjusted close of that bar.
moving_averages.smaobjectSimple moving averages keyed by window, for example 20, 50, 200.
moving_averages.emaobjectExponential moving averages keyed by window.
momentum_oscillators.rsi_14numberFourteen day relative strength index.
momentum_oscillators.stochasticobjectStochastic oscillator k and d.
trend.macdobjectMACD line, signal line and histogram.
trend.adxobjectAverage directional index with plus and minus directional indicators.
volatility.atr_14numberFourteen day average true range.
volatility.bollingerobjectUpper, middle and lower Bollinger bands.
volume.obvnumberCumulative on balance volume.
levelsobjectPivot point with two resistance and two support levels.