# atr_pct

ATR(14) as a percent of price. Useful as a volatility filter.

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
- Unit: %
- 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 atr_pct above a cutoff

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

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

```json
{
 "as_of": "2026-09-08T13:06:47.832Z",
 "signal": "atr_pct",
 "condition": "> 41.0253",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "QH",
   "name": "Quhuo Limited Class A Ordinary Shares",
   "value": 57067.0524
  },
  {
   "ticker": "CCIXW",
   "name": "Churchill Capital Corp IX Warrant",
   "value": 3244.4444
  }
 ]
}
```

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

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

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

```json
{
 "as_of": "2026-06-10",
 "signal": "atr_pct",
 "condition": "> 41.0253",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ADTX",
   "name": "Aditxt, Inc. Common Stock",
   "value": 3705.9611767170013
  },
  {
   "ticker": "HUBC",
   "name": "Hub Cyber Security Ltd. Ordinary Shares",
   "value": 814.7239886133534
  }
 ]
}
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/atr_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 41.0253", "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": "atr_pct IS NOT NULL", "order": "atr_pct", "columns": "atr_pct" }'
```

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

```json
{
 "as_of": "2026-09-08T13:06:50.022Z",
 "query": {
  "q": "atr_pct IS NOT NULL",
  "limit": 2,
  "order": "atr_pct",
  "dir": "desc",
  "fields": [
   "atr_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "QH",
   "name": "Quhuo Limited Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 4.105,
   "change_1d_pct": 4.166666666666681,
   "gap_pct": 1.76,
   "relative_volume": null,
   "market_cap": 11086098,
   "atr_pct": 57067.0524
  },
  {
   "ticker": "CCIXW",
   "name": "Churchill Capital Corp IX Warrant",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.0045,
   "change_1d_pct": null,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": null,
   "atr_pct": 3244.4444
  }
 ]
}
```

#### 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": "atr_pct IS NOT NULL", "order": "atr_pct", "columns": "atr_pct", "asof": "2026-06-10" }'
```

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

```json
{
 "as_of": "2026-06-10",
 "query": {
  "q": "atr_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "atr_pct",
  "dir": "desc",
  "fields": [
   "atr_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "ADTX",
   "name": "Aditxt, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 0.0185,
   "change_1d_pct": -35.98615916955018,
   "gap_pct": -24.567474048442904,
   "relative_volume": 7.7622259996195355,
   "market_cap": 872,
   "atr_pct": 3705.9611767170013
  },
  {
   "ticker": "HUBC",
   "name": "Hub Cyber Security Ltd. Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 1.45,
   "change_1d_pct": -3.973509933774838,
   "gap_pct": -7.284768211920537,
   "relative_volume": 0.3592143381841596,
   "market_cap": null,
   "atr_pct": 814.7239886133534
  }
 ]
}
```

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

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

```json
{
 "as_of": "2026-09-08T13:06:54.295Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "atr_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "atr_pct": 2.2706
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "atr_pct": 2.2558
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "atr_pct": 2.3957
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "atr_pct": 2.2773
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "atr_pct": 2.3331
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "atr_pct": 2.3657
   }
  ]
 }
}
```

## 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)
- [bollinger_b](https://tickerbot.io/docs/signals/bollinger_b.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/atr_pct/
