volume_change_vs_avg
Ratio of today’s pace-adjusted volume to its 10-day average. Numeric surface of the same denominator `relative_volume` uses.
At a glance
| Type | numeric |
| Group | Volume |
| Category | Relative & unusual volume |
| Update cadence | 1 min · mkt hrs |
| Intervals | 1m/1h/1d |
| Universe | all tickers |
| History | recent only (forward-only from first computation) |
| Nullable | yes — NULL where not applicable |
Trading activity relative to baseline: relative volume, bursts, unusual-volume flags, liquidity conditions.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl -G "https://api.tickerbot.io/v2/signals/volume_change_vs_avg" \
--data-urlencode "condition=> 8.3797" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:26:04.858Z",
"signal": "volume_change_vs_avg",
"condition": "> 8.3797",
"universe": null,
"count": 2,
"results": [
{
"ticker": "IRAB",
"name": "Iris Acquisition Corp II",
"value": 17308.1538
},
{
"ticker": "FSHP",
"name": "Flag Ship Acquisition Corp. Ordinary Shares",
"value": 9445.6667
}
]
}curl -G "https://api.tickerbot.io/v2/signals/volume_change_vs_avg" \
--data-urlencode "condition=> 8.3797" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "volume_change_vs_avg",
"condition": "> 8.3797",
"universe": null,
"count": 0,
"results": []
}curl -X POST "https://api.tickerbot.io/v2/signals/volume_change_vs_avg/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 8.3797", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook — the same shape as GET /v2/webhooks/{id}, plus a one-time signing_secret for HMAC verification.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=volume_change_vs_avg IS NOT NULL" \
-d "order=volume_change_vs_avg" -d "columns=volume_change_vs_avg" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:26:07.871Z",
"query": {
"q": "volume_change_vs_avg IS NOT NULL",
"limit": 2,
"order": "volume_change_vs_avg",
"dir": "desc",
"fields": [
"volume_change_vs_avg"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "IRAB",
"name": "Iris Acquisition Corp II",
"asset_class": "stocks",
"asset_type": "CS",
"price": 9.955,
"day_change_pct": 0.0025,
"gap_pct": 0.004,
"relative_volume": null,
"market_cap": 227901436,
"volume_change_vs_avg": 17308.1538
},
{
"ticker": "FSHP",
"name": "Flag Ship Acquisition Corp. Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 11.225,
"day_change_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": 56436555,
"volume_change_vs_avg": 9445.6667
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=volume_change_vs_avg IS NOT NULL" \
-d "order=volume_change_vs_avg" -d "columns=volume_change_vs_avg" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "volume_change_vs_avg IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "volume_change_vs_avg",
"dir": "desc",
"fields": [
"volume_change_vs_avg"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 0,
"results": []
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "volume_change_vs_avg > 8.3797", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Use series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,volume_change_vs_avg" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:26:09.640Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"volume_change_vs_avg"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"volume_change_vs_avg": 0.5664
},
{
"t": "2026-08-13",
"close": 305.26,
"volume_change_vs_avg": 0.5502
},
{
"t": "2026-08-14",
"close": 305.93,
"volume_change_vs_avg": 0.4524
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"volume_change_vs_avg": 0.4103
},
{
"t": "2026-08-13",
"close": 496.88,
"volume_change_vs_avg": 0.4561
},
{
"t": "2026-08-14",
"close": 495.4,
"volume_change_vs_avg": 0.336
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.