from_vwap_pct
Percent distance from today’s VWAP.
Swap YOUR_KEY for a key from /dashboard/keys. Responses are real captures from 2026-09-18, trimmed.
The whole market, filtered on it /v2/scan
Live — the whole market, ranked by this column
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "from_vwap_pct IS NOT NULL", "order": "from_vwap_pct", "columns": "from_vwap_pct" }'As-of — a past intraday moment (hourly state)
curl -X POST "https://api.tickerbot.io/v2/scan" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{ "q": "from_vwap_pct IS NOT NULL", "order": "from_vwap_pct", "columns": "from_vwap_pct", "asof": "2026-06-28T17:45:00Z", "interval": "1h" }'Same grammar on scan and webhooks. This signal lives in intraday state: ?asof= reads carry it at interval=1h with a timestamp, not at daily resolution.