# from_52w_low_pct

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

A numeric signal column on the Tickerbot computed state table (20,964+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Price
- Category: Highs & lows
- Type: numeric
- Unit: %
- Update cadence: post-close daily
- Intervals: 1m/1h/1d
- Universe: all tickers
- History: full · since 2003
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. Response payloads are real captures, sampled 2026-09-08 and trimmed; your run's values and dates will differ.

### Every ticker matching this signal — `/v2/signals/{signal}` (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with from_52w_low_pct above a cutoff

```bash
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):

```json
{
 "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

```bash
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):

```json
{
 "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

```bash
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` (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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):

```json
{
 "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

```bash
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):

```json
{
 "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

```bash
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` (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
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):

```json
{
 "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
   }
  ]
 }
}
```

## Related signals (Highs & lows)

- [52_week_high](https://tickerbot.io/docs/signals/52_week_high.md)
- [52_week_low](https://tickerbot.io/docs/signals/52_week_low.md)
- [approaching_52w_high](https://tickerbot.io/docs/signals/approaching_52w_high.md)
- [approaching_52w_low](https://tickerbot.io/docs/signals/approaching_52w_low.md)
- [at_20d_high](https://tickerbot.io/docs/signals/at_20d_high.md)
- [at_20d_low](https://tickerbot.io/docs/signals/at_20d_low.md)
- [at_52w_high](https://tickerbot.io/docs/signals/at_52w_high.md)
- [at_52w_low](https://tickerbot.io/docs/signals/at_52w_low.md)
- [days_since_52w_high](https://tickerbot.io/docs/signals/days_since_52w_high.md)
- [days_since_52w_low](https://tickerbot.io/docs/signals/days_since_52w_low.md)
- [from_52w_high_pct](https://tickerbot.io/docs/signals/from_52w_high_pct.md)
- [high_20d](https://tickerbot.io/docs/signals/high_20d.md)
- [high_20d_eod](https://tickerbot.io/docs/signals/high_20d_eod.md)
- [high_52w](https://tickerbot.io/docs/signals/high_52w.md)
- [high_52w_date](https://tickerbot.io/docs/signals/high_52w_date.md)

---

Full catalog: https://tickerbot.io/docs/signals/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/from_52w_low_pct/
