/v1/anchored
Anchored VWAP from a chosen bar
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/vwap-api/v1/anchored" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vwap-api/v1/anchored", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vwap-api/v1/anchored");
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/vwap-api/v1/anchored",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "VWAP",
"candles": 3,
"position": "above_vwap",
"last_price": 103,
"anchor_index": 1,
"total_volume": 5000,
"anchored_vwap": 102.4,
"deviation_pct": 0.5859,
"bars_in_anchor": 2
},
"meta": {
"timestamp": "2026-06-11T07:49:28.817Z",
"request_id": "df0af8c0-6995-44b6-ae1f-2c96bca774d1"
},
"status": "ok",
"message": "Anchored VWAP computed",
"success": true
}