# bollinger_b

Position within Bollinger bands. 0 = at lower band, 1 = at upper band, >1 = outside.

A numeric signal column on the Tickerbot computed state table (20,964+ 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: Technicals
- Category: Volatility & bands
- Type: numeric
- Update cadence: post-close daily
- 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-09-08 and trimmed; your run's values and dates will differ.

### Every ticker matching this signal — `/v2/signals/{signal}` (https://tickerbot.io/docs/endpoints/signals.md)

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

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

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

```json
{
 "as_of": "2026-09-08T13:07:11.115Z",
 "signal": "bollinger_b",
 "condition": "> 1.2115",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ACGC",
   "name": "ACP Holdings Acquisition Corp. Class A Ordinary Shares",
   "value": 2.6153
  },
  {
   "ticker": "BIAFW",
   "name": "bioAffinity Technologies, Inc. Warrant",
   "value": 2.3931
  }
 ]
}
```

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

```bash
curl -G "https://api.tickerbot.io/v2/signals/bollinger_b" \
  --data-urlencode "condition=> 1.2115" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-06-10",
 "signal": "bollinger_b",
 "condition": "> 1.2115",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "DSY",
   "name": "Big Tree Cloud Holdings Limited Class A Ordinary Shares",
   "value": 1.5872205604241747
  },
  {
   "ticker": "CPOP",
   "name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
   "value": 1.5806739585991296
  }
 ]
}
```

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

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

### The whole market, filtered on it — `/v2/scan` (https://tickerbot.io/docs/endpoints/scan.md)

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "bollinger_b IS NOT NULL", "order": "bollinger_b", "columns": "bollinger_b" }'
```

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

```json
{
 "as_of": "2026-09-08T13:07:15.845Z",
 "query": {
  "q": "bollinger_b IS NOT NULL",
  "limit": 2,
  "order": "bollinger_b",
  "dir": "desc",
  "fields": [
   "bollinger_b"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "ACGC",
   "name": "ACP Holdings Acquisition Corp. Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 10.135,
   "change_1d_pct": 1.1477045908183654,
   "gap_pct": -0.05,
   "relative_volume": null,
   "market_cap": 291586679,
   "bollinger_b": 2.6153
  },
  {
   "ticker": "BIAFW",
   "name": "bioAffinity Technologies, Inc. Warrant",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.67,
   "change_1d_pct": 71.32701724777212,
   "gap_pct": -9.43,
   "relative_volume": null,
   "market_cap": null,
   "bollinger_b": 2.3931
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "bollinger_b IS NOT NULL", "order": "bollinger_b", "columns": "bollinger_b", "asof": "2026-06-10" }'
```

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

```json
{
 "as_of": "2026-06-10",
 "query": {
  "q": "bollinger_b IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "bollinger_b",
  "dir": "desc",
  "fields": [
   "bollinger_b"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "DSY",
   "name": "Big Tree Cloud Holdings Limited Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 7.2,
   "change_1d_pct": 291.30434782608694,
   "gap_pct": 420.65217391304344,
   "relative_volume": 29.831389540164082,
   "market_cap": null,
   "bollinger_b": 1.5872205604241747
  },
  {
   "ticker": "CPOP",
   "name": "Pop Culture Group Co., Ltd Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 15.2,
   "change_1d_pct": 322.2222222222222,
   "gap_pct": 41.66666666666665,
   "relative_volume": 20.854878151407174,
   "market_cap": null,
   "bollinger_b": 1.5806739585991296
  }
 ]
}
```

#### 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_b > 1.2115", "target_url": "https://example.com/hooks/tickerbot"}'
```

Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.

### Its history — `/v2/series` (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_b" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-09-08T13:07:18.554Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "bollinger_b"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "bollinger_b": 1.0233
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "bollinger_b": 1.0337
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "bollinger_b": 0.7384
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "bollinger_b": 0.5707
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "bollinger_b": 0.8487
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "bollinger_b": 0.5938
   }
  ]
 }
}
```

## 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_pct](https://tickerbot.io/docs/signals/atr_pct.md)
- [bollinger_lower](https://tickerbot.io/docs/signals/bollinger_lower.md)
- [bollinger_middle](https://tickerbot.io/docs/signals/bollinger_middle.md)
- [bollinger_squeeze](https://tickerbot.io/docs/signals/bollinger_squeeze.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/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/bollinger_b/
