/v1/ichimoku
Full Ichimoku reading for a symbol
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/ichimoku-api/v1/ichimoku" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ichimoku-api/v1/ichimoku", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ichimoku-api/v1/ichimoku");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/ichimoku-api/v1/ichimoku",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "The full Ichimoku Kinko Hyo reading for AAPL on the 1d timeframe. cloud is the current Kumo (the leading spans as plotted today, i.e. computed 26 periods ago — the cloud price sits in); forward_cloud is today's leading spans projected 26 periods ahead (forward support/resistance). signals.price_vs_cloud, tenkan_kijun and chikou are the three mechanical reads; overall is their majority. Levels are in the instrument's own price (USD). Mechanical indicator reads, not advice. Live, cached ~5m.",
"as_of": "2026-06-12",
"cloud": {
"top": 271.7075,
"color": "bullish",
"bottom": 266.77,
"senkou_a": 271.7075,
"senkou_b": 266.77
},
"price": 291.13,
"params": {
"base": 26,
"leading_b": 52,
"conversion": 9,
"displacement": 26
},
"source": "Yahoo Finance chart candles (query1.finance.yahoo.com), keyless",
"symbol": "AAPL",
"signals": {
"chikou": "bullish",
"overall": "bullish",
"tenkan_kijun": "bullish",
"price_vs_cloud": "above"
},
"currency": "USD",
"interval": "1d",
"kijun_sen": 301.59,
"tenkan_sen": 302.39,
"chikou_span": 291.13,
"forward_cloud": {
"color": "bullish",
"senkou_a": 301.99,
"senkou_b": 281.55,
"projected_periods_ahead": 26
}
},
"meta": {
"timestamp": "2026-06-13T04:42:13.338Z",
"request_id": "01f3104c-ba3a-4380-a2a9-21354d71f961"
},
"status": "ok",
"message": "Ichimoku retrieved successfully",
"success": true
}