atr_pct
ATR(14) as a percent of price. Useful as a volatility filter.
Swap YOUR_KEY for a key from /dashboard/keys. Responses are real captures from 2026-09-08, trimmed.
Every ticker matching this signal /v2/signals/{signal}
Live — every ticker with atr_pct above a cutoff
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)
{
"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
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)
{
"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
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
Live — the whole market, ranked by this column
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)
{
"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
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)
{
"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
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
History — the column on an aligned time grid
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)
{
"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
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.