Skip to main content
GET
/
stocks
/
{symbol}
/
indicators
Technical Indicators
curl --request GET \
  --url https://api.tradewatch.io/stocks/{symbol}/indicators \
  --header 'api-key: <api-key>'
{
  "data": "<unknown>",
  "symbol": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://tradewatch.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api-key
string
header
required

Authentication via API key header

Path Parameters

symbol
string
required

Stock ticker symbol (e.g., 'AAPL', 'TSLA').

Query Parameters

name
string | null

Indicator to compute. Supported values: sma (Simple Moving Average), ema (Exponential Moving Average), rsi (Relative Strength Index), macd (MACD), bollinger (Bollinger Bands), atr (Average True Range), stochastic (Stochastic Oscillator), cci (Commodity Channel Index), obv (On-Balance Volume), adx (Average Directional Index), supertrend, ichimoku (Ichimoku Cloud), vwap (VWAP), williams-r, momentum, roc (Rate of Change), wma (Weighted MA), keltner (Keltner Channel), donchian (Donchian Channel), ad (Accumulation/Distribution). Omit to receive the full list of available indicators.

period
integer | null

Lookback period in trading days for the indicator calculation (e.g., 14 for RSI, 20 for SMA/Bollinger). Defaults vary by indicator.

Response

Successful Response

data
any

Endpoint-specific response payload. Structure varies by endpoint and parameters.

symbol
string | null

Stock ticker symbol the data relates to (e.g., 'AAPL', 'TSLA'). Null for market-wide endpoints.