from_52w_high_pct
Percent below the 52-week high. Always >= 0 (use the `at_52w_high` flag to test highs).
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 from_52w_high_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/from_52w_high_pct" \
--data-urlencode "condition=> -0.03494060097834229" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:13.911Z",
"signal": "from_52w_high_pct",
"condition": "> -0.03494060097834229",
"universe": null,
"count": 2,
"results": [
{
"ticker": "NSAIW",
"name": "NorthStrive Acquisition Corp I. Warrants",
"value": 82.11009174311926
},
{
"ticker": "CMIIU",
"name": "Columbus Circle Capital Corp II Unit",
"value": 2.6041202176045646
}
]
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/from_52w_high_pct" \
--data-urlencode "condition=> -0.03494060097834229" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "from_52w_high_pct",
"condition": "> -0.03494060097834229",
"universe": null,
"count": 2,
"results": [
{
"ticker": "TAVIU",
"name": "Tavia Acquisition Corp. Unit",
"value": 0.0143
},
{
"ticker": "MASI",
"name": "Masimo Corporation",
"value": 0.0053
}
]
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/from_52w_high_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> -0.03494060097834229", "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": "from_52w_high_pct IS NOT NULL", "order": "from_52w_high_pct", "columns": "from_52w_high_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:16.647Z",
"query": {
"q": "from_52w_high_pct IS NOT NULL",
"limit": 2,
"order": "from_52w_high_pct",
"dir": "desc",
"fields": [
"from_52w_high_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "NSAIW",
"name": "NorthStrive Acquisition Corp I. Warrants",
"asset_class": "stocks",
"asset_type": "WARRANT",
"price": 0.0794,
"change_1d_pct": 60.404040404040394,
"gap_pct": -14.14,
"relative_volume": null,
"market_cap": null,
"from_52w_high_pct": 82.11009174311926
},
{
"ticker": "CMIIU",
"name": "Columbus Circle Capital Corp II Unit",
"asset_class": "stocks",
"asset_type": "UNIT",
"price": 11.505,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"from_52w_high_pct": 2.6041202176045646
}
]
}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": "from_52w_high_pct IS NOT NULL", "order": "from_52w_high_pct", "columns": "from_52w_high_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "from_52w_high_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "from_52w_high_pct",
"dir": "desc",
"fields": [
"from_52w_high_pct"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TAVIU",
"name": "Tavia Acquisition Corp. Unit",
"asset_class": "stocks",
"asset_type": "UNIT",
"price": 11.36,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"from_52w_high_pct": 0.0143
},
{
"ticker": "MASI",
"name": "Masimo Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 179.95,
"change_1d_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": 9789280000,
"from_52w_high_pct": 0.0053
}
]
}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": "from_52w_high_pct > -0.03494060097834229", "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,from_52w_high_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:08:20.017Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"from_52w_high_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"from_52w_high_pct": -5.713760836335389
},
{
"t": "2026-09-03",
"close": 328.21,
"from_52w_high_pct": -4.78912986885971
},
{
"t": "2026-09-04",
"close": 321.183,
"from_52w_high_pct": -6.787273061285975
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"from_52w_high_pct": -10.304847215199016
},
{
"t": "2026-09-03",
"close": 510.12,
"from_52w_high_pct": -7.909412699559352
},
{
"t": "2026-09-04",
"close": 501.241,
"from_52w_high_pct": -9.477533771581312
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.