View as markdown

change_1y_pct

Percent change vs. close ~252 trading days ago.

metadata
typenumeric
unit%
cadencepost-close daily
intervals1m/1h/1d
universeall tickers
historyfull · since 2004
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 change_1y_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_1y_pct" \
  --data-urlencode "condition=> 256.76175382989965" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:21.572Z",
 "signal": "change_1y_pct",
 "condition": "> 256.76175382989965",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "RVMDW",
   "name": "Revolution Medicines, Inc. Warrant",
   "value": 6144.6695095948835
  },
  {
   "ticker": "BWET",
   "name": "Breakwave Tanker Shipping ETF",
   "value": 3614.674074074074
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_1y_pct" \
  --data-urlencode "condition=> 256.76175382989965" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "change_1y_pct",
 "condition": "> 256.76175382989965",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "STRC",
   "name": "Strategy Inc Variable Rate Series A Perpetual Stretch Preferred Stock",
   "value": 19062
  },
  {
   "ticker": "WW",
   "name": "WW International, Inc. Common Stock",
   "value": 12329.340511440105
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_1y_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 256.76175382989965", "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": "change_1y_pct IS NOT NULL", "order": "change_1y_pct", "columns": "change_1y_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:25.553Z",
 "query": {
  "q": "change_1y_pct IS NOT NULL",
  "limit": 2,
  "order": "change_1y_pct",
  "dir": "desc",
  "fields": [
   "change_1y_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "RVMDW",
   "name": "Revolution Medicines, Inc. Warrant",
   "asset_class": "stocks",
   "asset_type": "WARRANT",
   "price": 11.701,
   "change_1d_pct": -2.328881469115191,
   "gap_pct": -2.84,
   "relative_volume": null,
   "market_cap": null,
   "change_1y_pct": 6144.6695095948835
  },
  {
   "ticker": "BWET",
   "name": "Breakwave Tanker Shipping ETF",
   "asset_class": "stocks",
   "asset_type": "ETV",
   "price": 510.51,
   "change_1d_pct": 2.8403940291291403,
   "gap_pct": 4.65,
   "relative_volume": null,
   "market_cap": null,
   "change_1y_pct": 3614.674074074074
  }
 ]
}
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": "change_1y_pct IS NOT NULL", "order": "change_1y_pct", "columns": "change_1y_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "change_1y_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "change_1y_pct",
  "dir": "desc",
  "fields": [
   "change_1y_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "STRC",
   "name": "Strategy Inc Variable Rate Series A Perpetual Stretch Preferred Stock",
   "asset_class": "stocks",
   "asset_type": "PFD",
   "price": 95.81,
   "change_1d_pct": -0.3846953628613064,
   "gap_pct": -0.18714909544604574,
   "relative_volume": 0.5137611992326966,
   "market_cap": 30214649400,
   "change_1y_pct": 19062
  },
  {
   "ticker": "WW",
   "name": "WW International, Inc. Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 18.47,
   "change_1d_pct": 2.5541365907828832,
   "gap_pct": 0.11104941699055842,
   "relative_volume": 0.7462677535773996,
   "market_cap": 180864570,
   "change_1y_pct": 12329.340511440105
  }
 ]
}
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": "change_1y_pct > 256.76175382989965", "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,change_1y_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:28.335Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "change_1y_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "change_1y_pct": 41.42521330315168
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "change_1y_pct": 37.572021637941866
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "change_1y_pct": 33.94903661689883
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "change_1y_pct": -1.6748495407031938
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "change_1y_pct": 0.905115266646872
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "change_1y_pct": -1.3246845286139064
   }
  ]
 }
}

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

Related signals — Performance & change