View as markdown
Concepts › Signals Price Highs & lows

from_52w_low_pct

Percent above the 52-week low. Always >= 0.

metadata
typenumeric
unit%
cadencepost-close daily
intervals1m/1h/1d
universeall tickers
historyfull · since 2003
nullableyes — NULL where not applicable

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_low_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/from_52w_low_pct" \
  --data-urlencode "condition=> 1226.2" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:14.522Z",
 "signal": "from_52w_low_pct",
 "condition": "> 1226.2",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "GTOP",
   "name": "Goldman Sachs Technology Opportunities ETF",
   "value": 121900
  },
  {
   "ticker": "STEN",
   "name": "iShares Large Cap 10% Target Buffer Sep ETF",
   "value": 113620
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/from_52w_low_pct" \
  --data-urlencode "condition=> 1226.2" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "from_52w_low_pct",
 "condition": "> 1226.2",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "USBC",
   "name": "USBC, Inc.",
   "value": 342900
  },
  {
   "ticker": "QTEXW",
   "name": "QTREX Quantum Ltd. Warrant",
   "value": 129900
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/from_52w_low_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 1226.2", "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_low_pct IS NOT NULL", "order": "from_52w_low_pct", "columns": "from_52w_low_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:20.364Z",
 "query": {
  "q": "from_52w_low_pct IS NOT NULL",
  "limit": 2,
  "order": "from_52w_low_pct",
  "dir": "desc",
  "fields": [
   "from_52w_low_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "GTOP",
   "name": "Goldman Sachs Technology Opportunities ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 48.8,
   "change_1d_pct": 0.6905971901546013,
   "gap_pct": 0.01,
   "relative_volume": null,
   "market_cap": null,
   "from_52w_low_pct": 121900
  },
  {
   "ticker": "STEN",
   "name": "iShares Large Cap 10% Target Buffer Sep ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 28.43,
   "change_1d_pct": -0.38612203138029505,
   "gap_pct": 0,
   "relative_volume": null,
   "market_cap": null,
   "from_52w_low_pct": 113620
  }
 ]
}
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_low_pct IS NOT NULL", "order": "from_52w_low_pct", "columns": "from_52w_low_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "from_52w_low_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "from_52w_low_pct",
  "dir": "desc",
  "fields": [
   "from_52w_low_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "USBC",
   "name": "USBC, Inc.",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 0.343,
   "change_1d_pct": 0.8823529411764712,
   "gap_pct": -1.6176470588235305,
   "relative_volume": 0.06696650691077001,
   "market_cap": null,
   "from_52w_low_pct": 342900
  },
  {
   "ticker": "QTEXW",
   "name": "QTREX Quantum Ltd. Warrant",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.13,
   "change_1d_pct": -31.57894736842105,
   "gap_pct": -15.789473684210526,
   "relative_volume": null,
   "market_cap": null,
   "from_52w_low_pct": 129900
  }
 ]
}
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_low_pct > 1226.2", "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_low_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:08:23.997Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "from_52w_low_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "from_52w_low_pct": 43.784908165523355
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "from_52w_low_pct": 45.19495463598141
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "from_52w_low_pct": 42.14782031422882
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "from_52w_low_pct": 42.22794959908363
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "from_52w_low_pct": 46.02634593356243
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "from_52w_low_pct": 43.539805269186715
   }
  ]
 }
}

Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.

Related signals — Highs & lows