API Documentation

⌘K
GET/api/1/charting/indicators/{identifier}

Technical Indicators

Computes technical indicators from OHLCV data. Supports SMA, EMA, RSI, MACD, Bollinger Bands, Stochastic, ATR, OBV, VWAP, ADX, CCI, Williams %R, and MFI.

Parameters

6
indicatorstringrequired
query

Indicator: sma, ema, rsi, macd, bbands, stoch, atr, obv, vwap, adx, cci, williams_r, mfi

periodnumber
query

Lookback period (default 14)

resolutionstring
query

Candle resolution (default D)

fromnumber
query

Start timestamp (Unix seconds)

tonumber
query

End timestamp (Unix seconds)

identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL, 037833100)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/charting/indicators/US0378331005?indicator=sma&period=14&resolution=D&from=2025-01-01&to=2025-12-31' \
  -H 'Accept: application/json'
200 Response
{
  "timestamps": [],
  "values": {}
}