# from_open_pc

Intraday: percent change from today’s session open to the latest snapshot price. Resets at session boundary.

A numeric signal column on the Tickerbot computed state table (20,798+ 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 action
- Category: Performance & change
- Type: numeric
- Unit: %
- Update cadence: 1 min · mkt hrs
- 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-08-18 and trimmed; your run's values and dates will differ.

### Use signals — `/v2/signals/{signal}`

One signal across the market: who matches now, who matched then, and a push when someone starts. (https://tickerbot.io/docs/endpoints/signals.md)

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

```bash
curl -G "https://api.tickerbot.io/v2/signals/from_open_pc" \
  --data-urlencode "condition=> 0.1458" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:54.373Z",
 "signal": "from_open_pc",
 "condition": "> 0.1458",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "RNWWW",
   "name": "ReNew Energy Global plc Warrant",
   "value": 4.74
  },
  {
   "ticker": "WETO",
   "name": "Wetour Robotics Limited Ordinary Shares",
   "value": 2.4803
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
curl -G "https://api.tickerbot.io/v2/signals/from_open_pc" \
  --data-urlencode "condition=> 0.1458" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "signal": "from_open_pc",
 "condition": "> 0.1458",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ELOX",
   "name": "Eloxx Pharmaceuticals, Inc. Common Stock",
   "value": 9.979999999999999
  },
  {
   "ticker": "TE.WS",
   "name": "T1 Energy Inc. Warrants, each whole warrant exercisable to purchase one Common Stock at an exercise price of $11.50 per share",
   "value": 1.8571428571428574
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
curl -X POST "https://api.tickerbot.io/v2/signals/from_open_pc/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 0.1458", "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.

### Use scan — `/v2/scan`

The whole market through a WHERE clause — this signal composed freely with any other column. (https://tickerbot.io/docs/endpoints/scan.md)

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

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=from_open_pc IS NOT NULL" \
  -d "order=from_open_pc" -d "columns=from_open_pc" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:23:57.626Z",
 "query": {
  "q": "from_open_pc IS NOT NULL",
  "limit": 2,
  "order": "from_open_pc",
  "dir": "desc",
  "fields": [
   "from_open_pc"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "RNWWW",
   "name": "ReNew Energy Global plc Warrant",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.0057,
   "day_change_pct": 4.74,
   "gap_pct": null,
   "relative_volume": 9.2746,
   "market_cap": null,
   "from_open_pc": 4.74
  },
  {
   "ticker": "WETO",
   "name": "Wetour Robotics Limited Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 35.36,
   "day_change_pct": 3.3017,
   "gap_pct": 0.236,
   "relative_volume": 3.2667,
   "market_cap": 6746976,
   "from_open_pc": 2.4803
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=from_open_pc IS NOT NULL" \
  -d "order=from_open_pc" -d "columns=from_open_pc" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-05-20",
 "query": {
  "q": "from_open_pc IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "from_open_pc",
  "dir": "desc",
  "fields": [
   "from_open_pc"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "ELOX",
   "name": "Eloxx Pharmaceuticals, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 6.039,
   "day_change_pct": 997.9999999999999,
   "gap_pct": 0,
   "relative_volume": 4.393151941302354,
   "market_cap": null,
   "from_open_pc": 9.979999999999999
  },
  {
   "ticker": "TE.WS",
   "name": "T1 Energy Inc. Warrants, each whole warrant exercisable to purchase one Common Stock at an exercise price of $11.50 per share",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 1,
   "day_change_pct": 227.8688524590164,
   "gap_pct": 14.754098360655732,
   "relative_volume": 13.463851325404573,
   "market_cap": 160977000,
   "from_open_pc": 1.8571428571428574
  }
 ]
}
```

#### 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_open_pc > 0.1458", "target_url": "https://example.com/hooks/tickerbot"}'
```

Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.

### Use series — `/v2/series`

Its history over time, on one aligned grid. (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_open_pc" \
  -H "Authorization: Bearer YOUR_KEY"
```

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

```json
{
 "as_of": "2026-08-18T00:24:00.394Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "from_open_pc"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "from_open_pc": -0.00952146837102599
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "from_open_pc": 0.003425265441635811
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "from_open_pc": -0.0002777777777777109
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "from_open_pc": -0.015012300246004978
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "from_open_pc": 0.007369263985889919
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "from_open_pc": -0.002377330741102652
   }
  ]
 }
}
```

## Related signals (Performance & change)

- [change_1m](https://tickerbot.io/docs/signals/change_1m.md)
- [change_1w](https://tickerbot.io/docs/signals/change_1w.md)
- [change_1y](https://tickerbot.io/docs/signals/change_1y.md)
- [change_3m](https://tickerbot.io/docs/signals/change_3m.md)
- [change_6m](https://tickerbot.io/docs/signals/change_6m.md)
- [change_ytd](https://tickerbot.io/docs/signals/change_ytd.md)
- [day_change](https://tickerbot.io/docs/signals/day_change.md)
- [day_change_pct](https://tickerbot.io/docs/signals/day_change_pct.md)
- [days_down](https://tickerbot.io/docs/signals/days_down.md)
- [days_up](https://tickerbot.io/docs/signals/days_up.md)
- [price_down_3pct](https://tickerbot.io/docs/signals/price_down_3pct.md)
- [price_up_3pct](https://tickerbot.io/docs/signals/price_up_3pct.md)
- [top_gainer](https://tickerbot.io/docs/signals/top_gainer.md)
- [top_loser](https://tickerbot.io/docs/signals/top_loser.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=from_open_pc · HTML: https://tickerbot.io/docs/signals/from_open_pc/
