View as markdown
Concepts › SignalsVolume Volume & averages

day_dollar_volume

Today’s cumulative dollar volume traded.

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

At a glance

Typenumeric
GroupVolume
CategoryVolume & averages
UnitUSD
Update cadence1 min · mkt hrs
Intervals1m/1h/1d
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 day_dollar_volume above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/day_dollar_volume" \
  --data-urlencode "condition=> 1046927328.13" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:18.070Z",
 "signal": "day_dollar_volume",
 "condition": "> 1046927328.13",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "MU",
   "name": "Micron Technology, Inc.",
   "value": 30583511774.53
  },
  {
   "ticker": "SNDK",
   "name": "Sandisk Corporation Common Stock",
   "value": 29754655327.59
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/day_dollar_volume" \
  --data-urlencode "condition=> 1046927328.13" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "day_dollar_volume",
 "condition": "> 1046927328.13",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "AACBU",
   "name": "Artius II Acquisition Inc. Units",
   "value": null
  },
  {
   "ticker": "AACO",
   "name": "Abony Acquisition Corp. I Class A Ordinary Share",
   "value": null
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/day_dollar_volume/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 1046927328.13", "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=day_dollar_volume IS NOT NULL" \
  -d "order=day_dollar_volume" -d "columns=day_dollar_volume" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:20.296Z",
 "query": {
  "q": "day_dollar_volume IS NOT NULL",
  "limit": 2,
  "order": "day_dollar_volume",
  "dir": "desc",
  "fields": [
   "day_dollar_volume"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "MU",
   "name": "Micron Technology, Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 1017.155,
   "day_change_pct": 0.0468,
   "gap_pct": 0.0287,
   "relative_volume": null,
   "market_cap": 1097386149100,
   "day_dollar_volume": 30583511774.53
  },
  {
   "ticker": "SNDK",
   "name": "Sandisk Corporation Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 1805.054,
   "day_change_pct": 0.0999,
   "gap_pct": 0.0363,
   "relative_volume": 1.0823,
   "market_cap": 239602060000,
   "day_dollar_volume": 29754655327.59
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=day_dollar_volume IS NOT NULL" \
  -d "order=day_dollar_volume" -d "columns=day_dollar_volume" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "day_dollar_volume IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "day_dollar_volume",
  "dir": "desc",
  "fields": [
   "day_dollar_volume"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "AACBU",
   "name": "Artius II Acquisition Inc. Units",
   "asset_class": "stocks",
   "asset_type": "UNIT",
   "price": 10.656,
   "day_change_pct": 0.44302007729287013,
   "gap_pct": 0.4712979545668839,
   "relative_volume": null,
   "market_cap": null,
   "day_dollar_volume": null
  },
  {
   "ticker": "AACO",
   "name": "Abony Acquisition Corp. I Class A Ordinary Share",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 9.889,
   "day_change_pct": -0.5130784708249513,
   "gap_pct": -0.5835010060362156,
   "relative_volume": null,
   "market_cap": null,
   "day_dollar_volume": null
  }
 ]
}
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": "day_dollar_volume > 1046927328.13", "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,day_dollar_volume" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:22.654Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "day_dollar_volume"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "day_dollar_volume": 10045173940.89
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "day_dollar_volume": 9261942142.408
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "day_dollar_volume": 6194426641.835
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "day_dollar_volume": 9662799066.456
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "day_dollar_volume": 8326960261.099999
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "day_dollar_volume": 5438805120.35
   }
  ]
 }
}

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

Related signals — Volume & averages