/v1/adx
ADX + DI direction
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/trendindicators-api/v1/adx" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trendindicators-api/v1/adx", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trendindicators-api/v1/adx");
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/trendindicators-api/v1/adx",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"adx": 56.4677,
"note": "ADX (Wilder) measures trend strength (>=25 trending); +DI vs -DI gives direction. Needs 2 x period + 1 candles.",
"period": 14,
"source": "TREND",
"candles": 30,
"plus_di": 23.8736,
"minus_di": 3.5705,
"direction": "bullish",
"trend_strength": "very_strong"
},
"meta": {
"timestamp": "2026-06-11T07:49:03.943Z",
"request_id": "c9f9252f-2dc8-4310-8b94-6e7a5d91a0f8"
},
"status": "ok",
"message": "ADX computed",
"success": true
}