/v1/vortex
Vortex Indicator VI+ / VI-
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/supertrend-api/v1/vortex" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/supertrend-api/v1/vortex", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/supertrend-api/v1/vortex");
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/supertrend-api/v1/vortex",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Vortex Indicator: VI+ = sum(|high - prior low|)/sum(TR); VI- = sum(|low - prior high|)/sum(TR). VI+ above VI- = uptrend; a crossover signals a trend change.",
"period": 14,
"source": "SUPERTREND",
"spread": 0.666667,
"candles": 26,
"vi_plus": 1.333333,
"vi_minus": 0.666667,
"direction": "bullish"
},
"meta": {
"timestamp": "2026-06-11T07:48:56.875Z",
"request_id": "ec8865a5-084f-4fdf-a6d4-f3b218657708"
},
"status": "ok",
"message": "Vortex computed",
"success": true
}