/v1/sharpe
Sharpe ratio + annualised return and volatility
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}