Zum Inhalt springen
GET /v1/psar

Parabolic SAR trailing stop + trend

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/trendindicators-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/trendindicators-api/v1/psar" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trendindicators-api/v1/psar", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trendindicators-api/v1/psar");
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/psar",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "sar": 117,
        "note": "Parabolic SAR is the stop-and-reverse trailing level. Trend up = SAR below price; a close crossing the SAR flips the trend.",
        "step": 0.02,
        "trend": "up",
        "max_af": 0.2,
        "source": "TREND",
        "candles": 30,
        "distance": 5,
        "last_close": 122
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:04.132Z",
        "request_id": "717f770e-93da-4d1f-a9ff-74e98784f945"
    },
    "status": "ok",
    "message": "Parabolic SAR computed",
    "success": true
}