/v1/psar
Parabolic SAR trailing stop + trend
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}