View as markdown
Concepts › Signals Price Highs & lows

position_in_52w_range_pct

Where the live price sits in the 52-week range, 0–100. 0 = at low, 100 = at high.

metadata
typenumeric
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 position_in_52w_range_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/position_in_52w_range_pct" \
  --data-urlencode "condition=> 99.66683990991353" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:09:54.316Z",
 "signal": "position_in_52w_range_pct",
 "condition": "> 99.66683990991353",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "NSAIW",
   "name": "NorthStrive Acquisition Corp I. Warrants",
   "value": 3354.545454545464
  },
  {
   "ticker": "IPXG",
   "name": "Inflection Point Acquisition Corp. VII Class A Ordinary Shares",
   "value": 208.6956521739135
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/position_in_52w_range_pct" \
  --data-urlencode "condition=> 99.66683990991353" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "position_in_52w_range_pct",
 "condition": "> 99.66683990991353",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "TOMDF",
   "name": "Todos Medical Ltd",
   "value": null
  },
  {
   "ticker": "AIQD",
   "name": "MicroSectors -3x Short Artificial Intelligence (AI) ETNs",
   "value": 100
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/position_in_52w_range_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 99.66683990991353", "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": "position_in_52w_range_pct IS NOT NULL", "order": "position_in_52w_range_pct", "columns": "position_in_52w_range_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:09:58.779Z",
 "query": {
  "q": "position_in_52w_range_pct IS NOT NULL",
  "limit": 2,
  "order": "position_in_52w_range_pct",
  "dir": "desc",
  "fields": [
   "position_in_52w_range_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,
   "position_in_52w_range_pct": 3354.545454545464
  },
  {
   "ticker": "IPXG",
   "name": "Inflection Point Acquisition Corp. VII Class A Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 10.165,
   "change_1d_pct": 1.1946241911398627,
   "gap_pct": null,
   "relative_volume": null,
   "market_cap": 314569936,
   "position_in_52w_range_pct": 208.6956521739135
  }
 ]
}
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": "position_in_52w_range_pct IS NOT NULL", "order": "position_in_52w_range_pct", "columns": "position_in_52w_range_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "position_in_52w_range_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "position_in_52w_range_pct",
  "dir": "desc",
  "fields": [
   "position_in_52w_range_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "TOMDF",
   "name": "Todos Medical Ltd",
   "asset_class": "stocks",
   "asset_type": null,
   "price": null,
   "change_1d_pct": null,
   "gap_pct": null,
   "relative_volume": 1.314677955757581,
   "market_cap": null,
   "position_in_52w_range_pct": null
  },
  {
   "ticker": "AIQD",
   "name": "MicroSectors -3x Short Artificial Intelligence (AI) ETNs",
   "asset_class": "stocks",
   "asset_type": "ETN",
   "price": 74.0001,
   "change_1d_pct": 7.824712224974513,
   "gap_pct": 0,
   "relative_volume": null,
   "market_cap": null,
   "position_in_52w_range_pct": 100
  }
 ]
}
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": "position_in_52w_range_pct > 99.66683990991353", "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,position_in_52w_range_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:10:01.490Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "position_in_52w_range_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "position_in_52w_range_pct": 83.40253195290165
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "position_in_52w_range_pct": 86.08842192583198
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "position_in_52w_range_pct": 80.28416817077066
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "position_in_52w_range_pct": 72.10052806571485
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "position_in_52w_range_pct": 78.585957363583
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "position_in_52w_range_pct": 74.3404068061803
   }
  ]
 }
}

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

Related signals — Highs & lows