Concepts › Signals › Price › Highs & lows
low_52w_date
Date the trailing-52-week low was set.
Watch this signal live on real tickers: Open in Explore →
At a glance
| Type | date |
| Group | Price |
| Category | Highs & lows |
| Update cadence | post-close daily |
| Intervals | 1m/1h/1d |
| Universe | all tickers |
| History | full · since 2003 |
| Nullable | yes — NULL where not applicable |
Rolling-window highs and lows (5-day, 20-day, 52-week), their dates and distances, and the at/approaching/breaking signals those levels own.
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 scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=low_52w_date IS NOT NULL" \
-d "order=low_52w_date" -d "columns=low_52w_date" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:24:28.113Z",
"query": {
"q": "low_52w_date IS NOT NULL",
"limit": 2,
"order": "low_52w_date",
"dir": "desc",
"fields": [
"low_52w_date"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "AAOZ",
"name": "Tradr 2X Short AAOI Daily ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 7.554,
"day_change_pct": -0.0639,
"gap_pct": -0.0223,
"relative_volume": null,
"market_cap": null,
"low_52w_date": "2026-08-17T00:00:00.000Z"
},
{
"ticker": "ABVC",
"name": "ABVC BioPharma, Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 0.852,
"day_change_pct": -0.0532,
"gap_pct": -0.0098,
"relative_volume": null,
"market_cap": 23986263,
"low_52w_date": "2026-08-17T00:00:00.000Z"
}
]
}As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=low_52w_date IS NOT NULL" \
-d "order=low_52w_date" -d "columns=low_52w_date" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-05-20",
"query": {
"q": "low_52w_date IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "low_52w_date",
"dir": "desc",
"fields": [
"low_52w_date"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "ABNY",
"name": "YieldMax ABNB Option Income Strategy ETF",
"asset_class": "stocks",
"asset_type": "ETS",
"price": 40.8183,
"day_change_pct": 2.1990485728592963,
"gap_pct": -1.3645468202303321,
"relative_volume": 0.46423141337820006,
"market_cap": null,
"low_52w_date": "2026-05-20T00:00:00.000Z"
},
{
"ticker": "ABRpD",
"name": "Arbor Realty Trust, Inc. 6.375% Series D Cumulative Redeemable Preferred Stock, Liquidation Preference $25.00 per Share",
"asset_class": "stocks",
"asset_type": "PFD",
"price": 16.66,
"day_change_pct": 0.36144578313252235,
"gap_pct": -0.24096385542170298,
"relative_volume": 0.8489812849291142,
"market_cap": 3507225915,
"low_52w_date": "2026-05-20T00:00:00.000Z"
}
]
}Use series /v2/series
Its history over time, on one aligned grid. Docs →
History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,low_52w_date" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:24:31.341Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"low_52w_date"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"low_52w_date": "2025-08-21T00:00:00.000Z"
},
{
"t": "2026-08-13",
"close": 305.26,
"low_52w_date": "2025-08-21T00:00:00.000Z"
},
{
"t": "2026-08-14",
"close": 305.93,
"low_52w_date": "2025-08-21T00:00:00.000Z"
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"low_52w_date": "2026-06-25T00:00:00.000Z"
},
{
"t": "2026-08-13",
"close": 496.88,
"low_52w_date": "2026-06-25T00:00:00.000Z"
},
{
"t": "2026-08-14",
"close": 495.4,
"low_52w_date": "2026-06-25T00:00:00.000Z"
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.