Skip to main content

Technicals

Indicators computed on-demand from OHLCV.

RSI, MACD, Bollinger Bands, EMA, SMA, ATR, VWMA, MFI, stochastic — all computed on-demand from historical OHLCV. Request via the technicals sub-graph on an entity or quote.

{
entitiesByTickers(tickers: ["SPY"]) {
technicals {
rsi
macd { histogram }
bollingerBands { upper middle lower }
}
}
}
curl https://api.jintel.ai/api/graphql \
-H "Authorization: Bearer $JINTEL_API_KEY" \
-d '{"query":"{ entitiesByTickers(tickers:[\"SPY\"]) { technicals { rsi macd { histogram } bollingerBands { upper middle lower } } } }"}'