# avg_volume_30d

30-day trailing average daily volume.

A bigint signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Volume
- Category: Volume & averages
- Type: bigint
- Unit: shares
- Update cadence: 1 min · mkt hrs
- Intervals: 1d
- Universe: all tickers
- History: full · since 2003
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with avg_volume_30d above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/avg_volume_30d" \
  --data-urlencode "condition=> 24681910" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:22:49.776Z",
 "signal": "avg_volume_30d",
 "condition": "> 24681910",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "BITO",
   "name": "ProShares Bitcoin ETF",
   "value": 218065026
  },
  {
   "ticker": "NVDA",
   "name": "Nvidia Corp",
   "value": 122170497
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
curl -G "https://api.tickerbot.io/v2/signals/avg_volume_30d" \
  --data-urlencode "condition=> 24681910" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-05-20",
 "signal": "avg_volume_30d",
 "condition": "> 24681910",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "X:DOGEUSD",
   "name": "Dogecoin",
   "value": 304192709
  },
  {
   "ticker": "SOXS",
   "name": "Direxion Daily Semiconductor Bear 3X ETF",
   "value": 218717839
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/avg_volume_30d/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 24681910", "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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=avg_volume_30d IS NOT NULL" \
  -d "order=avg_volume_30d" -d "columns=avg_volume_30d" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:22:53.634Z",
 "query": {
  "q": "avg_volume_30d IS NOT NULL",
  "limit": 2,
  "order": "avg_volume_30d",
  "dir": "desc",
  "fields": [
   "avg_volume_30d"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "BITO",
   "name": "ProShares Bitcoin ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 8.71,
   "day_change_pct": 0.0247,
   "gap_pct": 0.0071,
   "relative_volume": null,
   "market_cap": null,
   "avg_volume_30d": 218065026
  },
  {
   "ticker": "NVDA",
   "name": "Nvidia Corp",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 225.125,
   "day_change_pct": -0.0002,
   "gap_pct": 0.0036,
   "relative_volume": null,
   "market_cap": 5453600360000,
   "avg_volume_30d": 122170497
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=avg_volume_30d IS NOT NULL" \
  -d "order=avg_volume_30d" -d "columns=avg_volume_30d" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "avg_volume_30d IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "avg_volume_30d",
  "dir": "desc",
  "fields": [
   "avg_volume_30d"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "X:DOGEUSD",
   "name": "Dogecoin",
   "asset_class": "crypto",
   "asset_type": null,
   "price": 0.1056,
   "day_change_pct": 1.9305019305019322,
   "gap_pct": 0,
   "relative_volume": 0.791529759648822,
   "market_cap": null,
   "avg_volume_30d": 304192709
  },
  {
   "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_30d": 218717839
  }
 ]
}
```

#### Subscribe — webhook on a market-wide condition

```bash
curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"q": "avg_volume_30d > 24681910", "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. (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,avg_volume_30d" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "as_of": "2026-08-18T00:22:56.099Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "avg_volume_30d"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "avg_volume_30d": 53658250
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "avg_volume_30d": 52517370
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "avg_volume_30d": 51012555
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "avg_volume_30d": 38376231
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "avg_volume_30d": 36088352
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "avg_volume_30d": 35257364
   }
  ]
 }
}
```

## Related signals (Volume & averages)

- [avg_volume_10d](https://tickerbot.io/docs/signals/avg_volume_10d.md)
- [day_dollar_volume](https://tickerbot.io/docs/signals/day_dollar_volume.md)
- [min_day_accumulated_dollar_volume](https://tickerbot.io/docs/signals/min_day_accumulated_dollar_volume.md)
- [min_day_accumulated_volume](https://tickerbot.io/docs/signals/min_day_accumulated_volume.md)
- [min_dollar_volume](https://tickerbot.io/docs/signals/min_dollar_volume.md)
- [min_trade_count](https://tickerbot.io/docs/signals/min_trade_count.md)
- [min_volume](https://tickerbot.io/docs/signals/min_volume.md)
- [prev_day_volume](https://tickerbot.io/docs/signals/prev_day_volume.md)
- [volume_today](https://tickerbot.io/docs/signals/volume_today.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=avg_volume_30d · HTML: https://tickerbot.io/docs/signals/avg_volume_30d/
