price_down_3pct
Intraday move of -3% or worse vs prior close.
At a glance
day_change_pct <= -3| Type | event (boolean) |
| Group | Price action |
| Category | Performance & change |
| Update cadence | 1 min · mkt hrs |
| Intervals | 1m/1h/1d |
| Universe | all tickers |
| History | full · since 2003 |
| Firing | sticky |
Price change over standard horizons — today through 1 year — plus streaks and day-mover flags.
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/price_down_3pct" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:22.786Z",
"signal": "price_down_3pct",
"condition": null,
"universe": null,
"count": 2,
"results": [
{
"ticker": "AALG",
"name": "Leverage Shares 2X Long AAL Daily ETF",
"value": true
},
{
"ticker": "AAOZ",
"name": "Tradr 2X Short AAOI Daily ETF",
"value": true
}
]
}curl "https://api.tickerbot.io/v2/signals/price_down_3pct?asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "price_down_3pct",
"condition": null,
"universe": null,
"count": 2,
"results": [
{
"ticker": "AAOG",
"name": "Leverage Shares 2X Long AAOI Daily ETF",
"value": true
},
{
"ticker": "AAOI",
"name": "Applied Optoelectronics, Inc.",
"value": true
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/price_down_3pct/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=price_down_3pct" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:23.346Z",
"query": {
"q": "price_down_3pct",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "WCT",
"name": "Wellchange Holdings Company Limited Class A Ordinary shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.915,
"day_change_pct": -0.03,
"gap_pct": -0.0157,
"relative_volume": 0.0669,
"market_cap": 4273498
},
{
"ticker": "CHKP",
"name": "Check Point Software Technologies Ltd",
"asset_class": "stocks",
"asset_type": "CS",
"price": 127.75,
"day_change_pct": -0.0301,
"gap_pct": -0.0015,
"relative_volume": null,
"market_cap": 13448695510
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=price_down_3pct" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "price_down_3pct",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "day_change_pct",
"dir": "desc",
"fields": [],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "CVX",
"name": "Chevron Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 191.33,
"day_change_pct": -3.0012674271229343,
"gap_pct": -0.5069708491761723,
"relative_volume": 1.4155723988543285,
"market_cap": 379962247000
},
{
"ticker": "MOB",
"name": "Mobilicom Limited Ordinary Shares",
"asset_class": "stocks",
"asset_type": "ADRC",
"price": 5.17,
"day_change_pct": -3.001876172607883,
"gap_pct": 4.690431519699812,
"relative_volume": 1.3934507411884658,
"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": "price_down_3pct", "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 series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,price_down_3pct" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:25.958Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"price_down_3pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"price_down_3pct": false
},
{
"t": "2026-08-13",
"close": 305.26,
"price_down_3pct": false
},
{
"t": "2026-08-14",
"close": 305.93,
"price_down_3pct": false
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"price_down_3pct": false
},
{
"t": "2026-08-13",
"close": 496.88,
"price_down_3pct": false
},
{
"t": "2026-08-14",
"close": 495.4,
"price_down_3pct": false
}
]
}
}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=price_down_3pct" -d "transition=enter" -d "since=2026-01-10" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:26.087Z",
"query": {
"kind": "signal",
"tickers": null,
"universe": null,
"since": "2026-01-10T00:00:00.000Z",
"until": null,
"limit": 2,
"signal": "price_down_3pct",
"transition": "enter"
},
"count": 2,
"results": [
{
"ticker": "SXTC",
"ts": "2026-08-17T23:59:36.668Z",
"kind": "signal",
"payload": {
"signal": "price_down_3pct",
"transition": "enter",
"price": 4.141,
"definition_version": 6
}
},
{
"ticker": "NOMA",
"ts": "2026-08-17T23:59:36.668Z",
"kind": "signal",
"payload": {
"signal": "price_down_3pct",
"transition": "enter",
"price": 2.606,
"definition_version": 6
}
}
]
}curl "https://api.tickerbot.io/v2/signals/price_down_3pct/SXTC/events" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:25:26.217Z",
"ticker": "SXTC",
"signal": "price_down_3pct",
"count": 2,
"events": [
{
"started_at": "2026-08-17T23:59:36.668Z",
"ended_at": null,
"start_price": 4.141,
"end_price": null,
"definition_version": 6
},
{
"started_at": "2026-08-17T18:17:41.282Z",
"ended_at": "2026-08-17T23:22:37.919Z",
"start_price": 4.196,
"end_price": 4.219,
"definition_version": 6
}
]
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.