View as markdown
Concepts › SignalsVolume Volume & averages

avg_volume_10d

10-day trailing average daily volume.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typebigint
GroupVolume
CategoryVolume & averages
Unitshares
Update cadence1 min · mkt hrs
Intervals1d
Universeall tickers
Historyfull · since 2003
Nullableyes — NULL where not applicable

Absolute trading quantities: today's and prior volumes, dollar volume, averages, bar-level counts.

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 →

Live — every ticker with avg_volume_10d above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/avg_volume_10d" \
  --data-urlencode "condition=> 26068809" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:22:49.361Z",
 "signal": "avg_volume_10d",
 "condition": "> 26068809",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "SPCX",
   "name": "Space Exploration Technologies Corp. Class A Common Stock",
   "value": 162500561
  },
  {
   "ticker": "MSTU",
   "name": "T-Rex 2X Long MSTR Daily Target ETF",
   "value": 128590951
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/avg_volume_10d" \
  --data-urlencode "condition=> 26068809" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "avg_volume_10d",
 "condition": "> 26068809",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "SOXS",
   "name": "Direxion Daily Semiconductor Bear 3X ETF",
   "value": 366989374
  },
  {
   "ticker": "TZA",
   "name": "Direxion Daily Small Cap Bear 3x ETF",
   "value": 340807906
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/avg_volume_10d/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 26068809", "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 →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=avg_volume_10d IS NOT NULL" \
  -d "order=avg_volume_10d" -d "columns=avg_volume_10d" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:22:53.283Z",
 "query": {
  "q": "avg_volume_10d IS NOT NULL",
  "limit": 2,
  "order": "avg_volume_10d",
  "dir": "desc",
  "fields": [
   "avg_volume_10d"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "SPCX",
   "name": "Space Exploration Technologies Corp. Class A Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 145.876,
   "day_change_pct": 0.042,
   "gap_pct": -0.0002,
   "relative_volume": 0.7097,
   "market_cap": 1845449192300,
   "avg_volume_10d": 162500561
  },
  {
   "ticker": "MSTU",
   "name": "T-Rex 2X Long MSTR Daily Target ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 1.885,
   "day_change_pct": 0.0959,
   "gap_pct": 0.0058,
   "relative_volume": null,
   "market_cap": null,
   "avg_volume_10d": 128590951
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=avg_volume_10d IS NOT NULL" \
  -d "order=avg_volume_10d" -d "columns=avg_volume_10d" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "avg_volume_10d IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "avg_volume_10d",
  "dir": "desc",
  "fields": [
   "avg_volume_10d"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "SOXS",
   "name": "Direxion Daily Semiconductor Bear 3X ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 8.54,
   "day_change_pct": -13.997985901309171,
   "gap_pct": -6.344410876132921,
   "relative_volume": 1.2931886816542713,
   "market_cap": null,
   "avg_volume_10d": 366989374
  },
  {
   "ticker": "TZA",
   "name": "Direxion Daily Small Cap Bear 3x ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 4.83,
   "day_change_pct": -7.293666026871399,
   "gap_pct": -2.1113243761996223,
   "relative_volume": 1.8009887796296526,
   "market_cap": null,
   "avg_volume_10d": 340807906
  }
 ]
}
Subscribe — webhook on a market-wide condition
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "avg_volume_10d > 26068809", "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 →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,avg_volume_10d" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:22:55.191Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "avg_volume_10d"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "avg_volume_10d": 60972098
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "avg_volume_10d": 55984714
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "avg_volume_10d": 45761419
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "avg_volume_10d": 49089195
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "avg_volume_10d": 37676034
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "avg_volume_10d": 33317913
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Volume & averages