# from_52w_high_pct

Percent below the 52-week high. Always >= 0 (use the `at_52w_high` flag to test highs).

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_high_pct above a cutoff

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

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

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

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

```bash
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` (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_high_pct IS NOT NULL", "order": "from_52w_high_pct", "columns": "from_52w_high_pct" }'
```

Response (sampled 2026-09-08, trimmed):

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

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

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

```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_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` (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_high_pct" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-09-08, trimmed):

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

## 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_low_pct](https://tickerbot.io/docs/signals/from_52w_low_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_high_pct/
