/v1/psar
Parabolic SAR trailing stop + trend
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}