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
- TypeScript
- CLI
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 } } } }"}'
const { data } = await jintel.enrichEntity("SPY", ["technicals"]);
// data[0].technicals -> { rsi, macd, bollingerBands, ema, sma, atr, ... }
jintel enrich SPY --fields technicals --json