/v1/anchored
Anchored VWAP from a chosen bar
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}