in_opening_range
Price is inside the first-hour high/low range.
At a glance
or_low <= price <= or_high (OR = first 15 min after 09:30 ET)| Type | state (boolean) |
| Group | Price action |
| Category | Ranges & reversals |
| Update cadence | 1 min · mkt hrs |
| Universe | all tickers |
| History | intraday state only — as-of by timestamp at interval=1h |
| Firing | continuous |
Range structures and their resolution: opening range, breaks, consolidation, pullbacks, reversals, unusual range width.
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/in_opening_range" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:13.942Z",
"signal": "in_opening_range",
"condition": null,
"universe": null,
"count": 2,
"results": [
{
"ticker": "AACIW",
"name": "Armada Acquisition Corp. III Warrant",
"value": true
},
{
"ticker": "AACPW",
"name": "Apogee Acquisition Corp Warrant",
"value": true
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/in_opening_range/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=in_opening_range" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:14.308Z",
"query": {
"q": "in_opening_range",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "GDEVW",
"name": "GDEV Inc. Warrant",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 0.0045,
"day_change_pct": 4.625,
"gap_pct": 4.625,
"relative_volume": null,
"market_cap": null
},
{
"ticker": "PARAW",
"name": "Banzai International, Inc. Warrant",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 0.0127,
"day_change_pct": 0.8406,
"gap_pct": 0.8116,
"relative_volume": null,
"market_cap": null
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=in_opening_range" \
-d "asof=2026-05-20T17:45:00Z" -d "interval=1h" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20T17:45:00Z",
"query": {
"q": "in_opening_range",
"asof": "2026-05-20T17:45:00Z",
"interval": "1h",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "XNDX",
"name": "Tradr 2X Long XNDU Daily ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 20.46,
"day_change_pct": 40.13698630136987,
"gap_pct": -0.5479452054794526,
"relative_volume": 1.7147523189263865,
"market_cap": null
},
{
"ticker": "ARM",
"name": "Arm Holdings plc American Depositary Shares",
"asset_class": "stocks",
"asset_type": "ADRC",
"price": 253.5999,
"day_change_pct": 13.64548509970871,
"gap_pct": -0.47501680483979486,
"relative_volume": 1.2627724012747064,
"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": "in_opening_range", "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 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=in_opening_range" -d "transition=enter" -d "since=2026-01-10" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:16.550Z",
"query": {
"kind": "signal",
"tickers": null,
"universe": null,
"since": "2026-01-10T00:00:00.000Z",
"until": null,
"limit": 2,
"signal": "in_opening_range",
"transition": "enter"
},
"count": 2,
"results": [
{
"ticker": "YDEC",
"ts": "2026-08-17T20:15:44.625Z",
"kind": "signal",
"payload": {
"signal": "in_opening_range",
"transition": "enter",
"price": 28.245,
"definition_version": 6
}
},
{
"ticker": "XPEL",
"ts": "2026-08-17T20:15:44.625Z",
"kind": "signal",
"payload": {
"signal": "in_opening_range",
"transition": "enter",
"price": 50,
"definition_version": 6
}
}
]
}curl "https://api.tickerbot.io/v2/signals/in_opening_range/YDEC/events" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:24:16.691Z",
"ticker": "YDEC",
"signal": "in_opening_range",
"count": 2,
"events": [
{
"started_at": "2026-08-17T20:15:44.625Z",
"ended_at": "2026-08-17T20:26:37.911Z",
"start_price": 28.245,
"end_price": 28.245,
"definition_version": 6
},
{
"started_at": "2026-08-17T17:58:38.901Z",
"ended_at": "2026-08-17T17:59:40.422Z",
"start_price": 28.25,
"end_price": 28.242,
"definition_version": 6
}
]
}Same grammar on scan and webhooks. This column lives in intraday state: ?asof= reads carry it at interval=1h with a timestamp, not at daily resolution.