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).
Path parameters
The technical indicator to calculate. Allowed values: sma, ema, wma, dema, tema, williams, rsi, adx, standard-deviation.
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)
The time interval for the data. Allowed values: 1min, 5min, 15min, 30min, 1hour, 4hour, daily.
Query parameters
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.
The starting date for the historical data (YYYY-MM-DD).
The ending date for the historical data (YYYY-MM-DD).
Response
Successful response with an array of technical indicator data points.
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
}
]