Zum Inhalt springen
GET /v1/sharpe

Sharpe ratio + annualised return and volatility

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "n": 15,
        "metric": "sharpe",
        "source": "RISKMETRICS",
        "sharpe_period": 0.197632,
        "periods_per_year": 252,
        "risk_free_annual": 0,
        "annualized_return": 0.4032,
        "sharpe_annualized": 3.137311,
        "volatility_period": 0.00809585,
        "mean_return_period": 0.0016,
        "annualized_volatility": 0.128518
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:22.258Z",
        "request_id": "d677e657-e22d-4b4f-b0df-bfbf0be71cd2"
    },
    "status": "ok",
    "message": "Sharpe ratio computed",
    "success": true
}