API Documentation

GET/api/1/equity-extended/tech-indicators/{identifier}

Technical Indicators Time Series API

Returns technical indicator time series (SMA, EMA, RSI, MACD, Bollinger Bands) for the given security. Data from Finnhub.

Parameters

3
indicatorstring
query

Filter by indicator: sma, ema, rsi, macd, bbands (default: all)

resolutionstring
query

Resolution: D, W, M (default D)

identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity-extended/tech-indicators/US0378331005?indicator=sma&resolution=D' \
  -H 'Accept: application/json'
200 Response
[
  {
  "indicator": "sma",
  "resolution": "D",
  "timestamps": [],
  "values": {},
  "last_updated": "string"
}
]