Ir al contenido
GET /v1/psar

Parabolic SAR trailing stop + trend

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/trendindicators-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}