QuantOracle Technical Indicators is a paid API for AI agents from api.quantoracle.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).
Computes a suite of technical indicators (RSI, EMA, SMA, ATR, Bollinger Bands, ROC, Stochastic K) and trend signals from a price/volume series
QuantOracle: indicators/technical
Returns a JSON object containing RSI, EMA, SMA, ATR, ROC, Stochastic K, Bollinger Bands (upper/mid/lower), current price, trend direction (BEARISH/BULLISH), and an array of triggered signals such as BELOW_SMA, with response time in milliseconds.
POSThttps://api.quantoracle.dev/v1/indicators/technicalUse this endpoint when you need a comprehensive set of technical indicators computed server-side from raw price/volume arrays in a single call, rather than computing indicators client-side or calling multiple specialized endpoints. Ideal for agents that need trend classification and signal detection (e.g. BELOW_SMA) alongside standard oscillators and moving averages in one response.
{
"params": {
"fast": 5,
"slow": 10
},
"prices": [
42100,
42350,
41900,
42200,
41800,
42500,
42300,
41950,
42100,
42400,
42050,
42300,
42150,
41900,
42200,
42100,
42350,
42000,
42250,
42150,
42300,
42100,
42400,
42050,
42200,
42350,
41950,
42100,
42250,
42150
],
"strategy": "sma_crossover",
"slippage_bps": 5,
"commission_bps": 5,
"initial_capital": 10000
}| Field | Type | Description |
|---|---|---|
| period | integer | Lookback period for indicator calculations |
| prices | array | Array of price data (e.g. closing prices) |
| volumes | — | Optional array of volume data (same length as prices) |
{
"ms": 9.03,
"atr": 217.8571,
"ema": 42169.96,
"roc": 0.12,
"rsi": 50.82,
"sma": 42185.71,
"_meta": {
"url": "https://quantoracle.dev",
"docs": "https://api.quantoracle.dev/docs",
"powered_by": "QuantOracle"
},
"price": 42150,
"trend": "BEARISH",
"signals": [
"BELOW_SMA"
],
"bollinger": {
"mid": 42165,
"lower": 41889.51,
"upper": 42440.49
},
"stochastic_k": 44.44
}No reviews yet. Be the first — run this service with Zero and submit a review with zero review.
Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"