View as markdown
Concepts › SignalsPrice action Gaps

gap_pct

Percent change of `session_open` vs `previous_close`. One value per session.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typenumeric
GroupPrice action
CategoryGaps
Unit%
Update cadence1 min · mkt hrs
Intervals1m/1h/1d
Universeall tickers
Historyfull · since 2003
Nullableyes — NULL where not applicable

Opening gaps: size, direction, extremes, and intraday fill.

Query it

Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. 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. Docs →

Live — every ticker with gap_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/gap_pct" \
  --data-urlencode "condition=> 0.0849" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:58.804Z",
 "signal": "gap_pct",
 "condition": "> 0.0849",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "GDEVW",
   "name": "GDEV Inc. Warrant",
   "value": 4.625
  },
  {
   "ticker": "IPST",
   "name": "IP Strategy Holdings, Inc. Common Stock",
   "value": 2.5998
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/gap_pct" \
  --data-urlencode "condition=> 0.0849" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "gap_pct",
 "condition": "> 0.0849",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "MWC",
   "name": "Micware Co., Ltd. American Depositary Shares",
   "value": 154.55508474576274
  },
  {
   "ticker": "SLXN",
   "name": "Silexion Therapeutics Corp Ordinary Shares",
   "value": 134.1635687732342
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/gap_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 0.0849", "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. Docs →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=gap_pct IS NOT NULL" \
  -d "order=gap_pct" -d "columns=gap_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:00.039Z",
 "query": {
  "q": "gap_pct IS NOT NULL",
  "limit": 2,
  "order": "gap_pct",
  "dir": "desc",
  "fields": [
   "gap_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "GDEVW",
   "name": "GDEV Inc. Warrant",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 0.0045,
   "day_change_pct": 4.625,
   "gap_pct": 4.625,
   "relative_volume": null,
   "market_cap": null
  },
  {
   "ticker": "IPST",
   "name": "IP Strategy Holdings, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 7.965,
   "day_change_pct": 2.6203,
   "gap_pct": 2.5998,
   "relative_volume": null,
   "market_cap": 1587543
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=gap_pct IS NOT NULL" \
  -d "order=gap_pct" -d "columns=gap_pct" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "gap_pct IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "gap_pct",
  "dir": "desc",
  "fields": [
   "gap_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "MWC",
   "name": "Micware Co., Ltd. American Depositary Shares",
   "asset_class": "stocks",
   "asset_type": "ADRC",
   "price": 7.15,
   "day_change_pct": 51.48305084745765,
   "gap_pct": 154.55508474576274,
   "relative_volume": null,
   "market_cap": null
  },
  {
   "ticker": "SLXN",
   "name": "Silexion Therapeutics Corp Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 5.298,
   "day_change_pct": 96.95167286245353,
   "gap_pct": 134.1635687732342,
   "relative_volume": 29.19710936261394,
   "market_cap": 600082
  }
 ]
}
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": "gap_pct > 0.0849", "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. Docs →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,gap_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:24:03.112Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "gap_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "gap_pct": 0.062313469548390586
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "gap_pct": 0.6484698097601256
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "gap_pct": 0.24241630085828775
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "gap_pct": -0.7582223457255698
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "gap_pct": 0.16956724813678686
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "gap_pct": -0.10565931412010492
   }
  ]
 }
}

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

Related signals — Gaps