v1

latestOpenAPI 3.1.0raw.githubusercontent.com2025-04-25361217.6 KB
Technicals

Get Technical Indicator Data

Fetches historical technical indicator data for a specific stock symbol, indicator type, and time interval. Supports various indicators like SMA, EMA, WMA, DEMA, TEMA, Williams %R, RSI, ADX, and Standard Deviation. Specific required parameters depend on the chosen indicator (e.g., 'period' is required for most).

get/technicals/{indicator}/{symbol}/{interval}

Path parameters

indicator'sma' | 'ema' | 'wma' | 'dema' | 'tema' | 'williams' | 'rsi' | 'adx' | 'standard-deviation' required

The technical indicator to calculate. Allowed values: sma, ema, wma, dema, tema, williams, rsi, adx, standard-deviation.

symbolstring required

The stock symbol of the company (e.g., AAPL). Notation Guide:

  • U.S. Stocks: All caps (e.g. AAPL)
  • Intl. Stocks: All caps + "." + exchange (e.g. MC.PA, 9988.HK)
  • Crypto: Ticker + "USD" (e.g. BTCUSD, DOGEUSD)
  • Futures: Append "=F", all caps (e.g. ES=F, GC=F)
interval'1min' | '5min' | '15min' | '30min' | '1hour' | '4hour' | 'daily' required

The time interval for the data. Allowed values: 1min, 5min, 15min, 30min, 1hour, 4hour, daily.

Query parameters

periodinteger required

The time period (number of data points) to use for calculating the indicator (e.g., 10 for a 10-day SMA). Required for all indicators except Standard Deviation.

fromstring date

The starting date for the historical data (YYYY-MM-DD).

tostring date

The ending date for the historical data (YYYY-MM-DD).

Response

Successful response with an array of technical indicator data points.

datestring date-time
opennumber
highnumber
lownumber
closenumber
volumenumber
smanumber
rsinumber

Example response

[
  {
    "date": "2023-09-10 15:55:00",
    "open": 175.45,
    "high": 175.55,
    "low": 175.4,
    "close": 175.5,
    "volume": 15000,
    "sma": 174.85,
    "rsi": 65.2
  }
]