# bollinger_squeeze

Bollinger band width compressed to a multi-week low — volatility is contracted.

A boolean signal (flag) 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.

Definition: `bollinger_width < 0.04`

- Group: Technicals
- Category: Volatility & bands
- Type: state
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2003
- Firing: continuous

## 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 where it fires now

```bash
curl "https://api.tickerbot.io/v2/signals/bollinger_squeeze" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:22:58.458Z",
 "signal": "bollinger_squeeze",
 "condition": null,
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "AAA",
   "name": "Alternative Access First Priority CLO Bond ETF",
   "value": true
  },
  {
   "ticker": "AACB",
   "name": "Artius II Acquisition Inc. Class A Ordinary Shares",
   "value": true
  }
 ]
}
```

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

```bash
curl "https://api.tickerbot.io/v2/signals/bollinger_squeeze?asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "signal": "bollinger_squeeze",
 "condition": null,
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "A",
   "name": "Agilent Technologies Inc.",
   "value": true
  },
  {
   "ticker": "AAA",
   "name": "Alternative Access First Priority CLO Bond ETF",
   "value": true
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/bollinger_squeeze/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"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, filtered on this signal

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=bollinger_squeeze" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:22:59.322Z",
 "query": {
  "q": "bollinger_squeeze",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "PFLD",
   "name": "AAM Low Duration Preferred and Income Securities ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 20.86,
   "day_change_pct": 0.0678,
   "gap_pct": -0.0008,
   "relative_volume": 0.8142,
   "market_cap": null
  },
  {
   "ticker": "DUKB",
   "name": "Duke Energy Corporation 5.625% Junior Subordinated Debentures due 2078",
   "asset_class": "stocks",
   "asset_type": "SP",
   "price": 23.665,
   "day_change_pct": 0.0612,
   "gap_pct": 0.0022,
   "relative_volume": null,
   "market_cap": null
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "bollinger_squeeze",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "day_change_pct",
  "dir": "desc",
  "fields": [],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "PFX",
   "name": "PhenixFIN Corporation Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 43.58,
   "day_change_pct": 7.578110150308187,
   "gap_pct": 6.195738840437327,
   "relative_volume": 0.30893934883217405,
   "market_cap": -165822
  },
  {
   "ticker": "NSLR",
   "name": "Neostellar Capital Corp. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 13.51,
   "day_change_pct": 6.967537608867767,
   "gap_pct": 1.5043547110055384,
   "relative_volume": 1.125521465901982,
   "market_cap": null
  }
 ]
}
```

#### 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": "bollinger_squeeze", "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,bollinger_squeeze" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:01.734Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "bollinger_squeeze"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "bollinger_squeeze": false
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "bollinger_squeeze": false
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "bollinger_squeeze": false
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "bollinger_squeeze": false
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "bollinger_squeeze": false
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "bollinger_squeeze": false
   }
  ]
 }
}
```

### Use events — `/v2/events`

The flag as a timeline: each edge as a point event, and the spans it stayed true. (https://tickerbot.io/docs/endpoints/events.md)

#### Firings — every enter edge as a point event

```bash
curl -G "https://api.tickerbot.io/v2/events" \
  -d "kind=signal" -d "signal=bollinger_squeeze" -d "transition=enter" -d "since=2026-01-10" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:01.872Z",
 "query": {
  "kind": "signal",
  "tickers": null,
  "universe": null,
  "since": "2026-01-10T00:00:00.000Z",
  "until": null,
  "limit": 2,
  "signal": "bollinger_squeeze",
  "transition": "enter"
 },
 "count": 0,
 "results": []
}
```

#### Spans — when it was true for one ticker (AAPL)

```bash
curl "https://api.tickerbot.io/v2/signals/bollinger_squeeze/AAPL/events" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:02.047Z",
 "ticker": "AAPL",
 "signal": "bollinger_squeeze",
 "count": 0,
 "events": []
}
```

## Related signals (Volatility & bands)

- [at_bollinger_lower](https://tickerbot.io/docs/signals/at_bollinger_lower.md)
- [at_bollinger_upper](https://tickerbot.io/docs/signals/at_bollinger_upper.md)
- [atr_14](https://tickerbot.io/docs/signals/atr_14.md)
- [atr_percent](https://tickerbot.io/docs/signals/atr_percent.md)
- [bollinger_lower](https://tickerbot.io/docs/signals/bollinger_lower.md)
- [bollinger_middle](https://tickerbot.io/docs/signals/bollinger_middle.md)
- [bollinger_pct_b](https://tickerbot.io/docs/signals/bollinger_pct_b.md)
- [bollinger_upper](https://tickerbot.io/docs/signals/bollinger_upper.md)
- [bollinger_width](https://tickerbot.io/docs/signals/bollinger_width.md)
- [vwap_lower_band](https://tickerbot.io/docs/signals/vwap_lower_band.md)
- [vwap_upper_band](https://tickerbot.io/docs/signals/vwap_upper_band.md)

---

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