above_opening_range
Price is trading above the first 15-minute opening-range high.
At a glance
close > 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/above_opening_range" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:24.556Z",
"signal": "above_opening_range",
"condition": null,
"universe": null,
"count": 2,
"results": [
{
"ticker": "ACNT",
"name": "Ascent Industries Co. Common Stock",
"value": true
},
{
"ticker": "AMODW",
"name": "Alpha Modus Holdings, Inc. Warrant",
"value": true
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/above_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=above_opening_range" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:24.917Z",
"query": {
"q": "above_opening_range",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "NXGLW",
"name": "NexGel, Inc Warrant",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 0.0232,
"day_change_pct": 1.0174,
"gap_pct": 0.1478,
"relative_volume": 0.2232,
"market_cap": null
},
{
"ticker": "TLSIW",
"name": "TriSalus Life Sciences, Inc. Warrant",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 1,
"day_change_pct": 0.7857,
"gap_pct": 0.7179,
"relative_volume": 0.0119,
"market_cap": null
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=above_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": "above_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": "TM",
"name": "Toyota Motor Corporation American Depositary Shares (Each representing ten Ordinary Shares)",
"asset_class": "stocks",
"asset_type": "ADRC",
"price": 189.29,
"day_change_pct": 2.0596322855448284,
"gap_pct": 0.533779047824451,
"relative_volume": 0.2977727520546009,
"market_cap": null
},
{
"ticker": "WFC",
"name": "Wells Fargo & Co.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 75.56,
"day_change_pct": 1.3547954393024884,
"gap_pct": -0.04708249496981879,
"relative_volume": 0.40845982347594406,
"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": "above_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=above_opening_range" -d "transition=enter" -d "since=2026-01-10" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:35.492Z",
"query": {
"kind": "signal",
"tickers": null,
"universe": null,
"since": "2026-01-10T00:00:00.000Z",
"until": null,
"limit": 2,
"signal": "above_opening_range",
"transition": "enter"
},
"count": 2,
"results": [
{
"ticker": "ZBIO",
"ts": "2026-08-17T20:15:44.625Z",
"kind": "signal",
"payload": {
"signal": "above_opening_range",
"transition": "enter",
"price": 30.565,
"definition_version": 6
}
},
{
"ticker": "YCS",
"ts": "2026-08-17T20:15:44.625Z",
"kind": "signal",
"payload": {
"signal": "above_opening_range",
"transition": "enter",
"price": 54.923,
"definition_version": 6
}
}
]
}curl "https://api.tickerbot.io/v2/signals/above_opening_range/ZBIO/events" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:22:35.616Z",
"ticker": "ZBIO",
"signal": "above_opening_range",
"count": 2,
"events": [
{
"started_at": "2026-08-17T20:15:44.625Z",
"ended_at": "2026-08-17T20:17:40.114Z",
"start_price": 30.565,
"end_price": 30.565,
"definition_version": 6
},
{
"started_at": "2026-08-17T14:14:34.960Z",
"ended_at": "2026-08-17T20:12:45.502Z",
"start_price": 29.814,
"end_price": 30.565,
"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.