API Documentation
⌘K
API Key
Get free key 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
6indicatorstringrequiredIndicator: sma, ema, rsi, macd, bbands, stoch, atr, obv, vwap, adx, cci, williams_r, mfi
periodnumberLookback period (default 14)
resolutionstringCandle resolution (default D)
fromnumberStart timestamp (Unix seconds)
tonumberEnd timestamp (Unix seconds)
identifierstringrequiredSecurity 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": {}
}