bollinger_squeeze
Bollinger band width compressed to a multi-week low — volatility is contracted.
At a glance
bollinger_width < 0.04| Type | state (boolean) |
| Group | Technicals |
| Category | Volatility & bands |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2003 |
| Firing | continuous |
Volatility measures and deviation envelopes: ATR, Bollinger machinery, VWAP σ-bands.
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 "https://api.tickerbot.io/v2/signals/bollinger_squeeze" \
-H "Authorization: Bearer YOUR_KEY"{
"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
}
]
}curl "https://api.tickerbot.io/v2/signals/bollinger_squeeze?asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"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
}
]
}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. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=bollinger_squeeze" \
-H "Authorization: Bearer YOUR_KEY"{
"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
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=bollinger_squeeze" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"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
}
]
}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. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,bollinger_squeeze" \
-H "Authorization: Bearer YOUR_KEY"{
"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. Docs →
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"{
"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": []
}curl "https://api.tickerbot.io/v2/signals/bollinger_squeeze/AAPL/events" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:02.047Z",
"ticker": "AAPL",
"signal": "bollinger_squeeze",
"count": 0,
"events": []
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.