View as markdown

change_1m_pct

Percent change vs. close ~21 trading days ago. Daily; see `change_1w_pct` for note.

metadata
typenumeric
unit%
cadencepost-close daily
intervals1m/1h/1d
universeall tickers
historyfull · since 2003
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_1m_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_1m_pct" \
  --data-urlencode "condition=> 98.22834645669292" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:18.639Z",
 "signal": "change_1m_pct",
 "condition": "> 98.22834645669292",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "PHOS",
   "name": "First Phosphate Corp. American Depositary Shares",
   "value": 16390899.999999996
  },
  {
   "ticker": "TANH",
   "name": "Tantech Holdings Ltd. Class A Common Shares",
   "value": 4595.486935866984
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_1m_pct" \
  --data-urlencode "condition=> 98.22834645669292" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "change_1m_pct",
 "condition": "> 98.22834645669292",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "AMPGR",
   "name": "Amplitech Group, Inc. Series A Right",
   "value": 7871.428571428571
  },
  {
   "ticker": "AMPGZ",
   "name": "Amplitech Group, Inc. Series B Right",
   "value": 2371.153846153846
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_1m_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 98.22834645669292", "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_1m_pct IS NOT NULL", "order": "change_1m_pct", "columns": "change_1m_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:20.403Z",
 "query": {
  "q": "change_1m_pct IS NOT NULL",
  "limit": 2,
  "order": "change_1m_pct",
  "dir": "desc",
  "fields": [
   "change_1m_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "PHOS",
   "name": "First Phosphate Corp. American Depositary Shares",
   "asset_class": "stocks",
   "asset_type": "ADRC",
   "price": 16.225,
   "change_1d_pct": 2.4952621604548413,
   "gap_pct": -1.64,
   "relative_volume": null,
   "market_cap": 303387826,
   "change_1m_pct": 16390899.999999996
  },
  {
   "ticker": "TANH",
   "name": "Tantech Holdings Ltd. Class A Common Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 20.14,
   "change_1d_pct": 4.950495049504947,
   "gap_pct": -9.33,
   "relative_volume": null,
   "market_cap": 14601921,
   "change_1m_pct": 4595.486935866984
  }
 ]
}
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_1m_pct IS NOT NULL", "order": "change_1m_pct", "columns": "change_1m_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "change_1m_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "change_1m_pct",
  "dir": "desc",
  "fields": [
   "change_1m_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "ticker": "AMPGR",
   "name": "Amplitech Group, Inc. Series A Right",
   "asset_class": "stocks",
   "asset_type": "RIGHT",
   "price": 2.79,
   "change_1d_pct": 34.13461538461538,
   "gap_pct": 20.192307692307686,
   "relative_volume": 1.773168872862897,
   "market_cap": null,
   "change_1m_pct": 7871.428571428571
  },
  {
   "ticker": "AMPGZ",
   "name": "Amplitech Group, Inc. Series B Right",
   "asset_class": "stocks",
   "asset_type": "RIGHT",
   "price": 2.57,
   "change_1d_pct": 37.425806106625295,
   "gap_pct": 31.00903694989573,
   "relative_volume": 0.6026611187032995,
   "market_cap": null,
   "change_1m_pct": 2371.153846153846
  }
 ]
}
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_1m_pct > 98.22834645669292", "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_1m_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:22.827Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "change_1m_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "change_1m_pct": 5.0106664942788814
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "change_1m_pct": 5.488102893890678
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "change_1m_pct": 2.808168752600748
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "change_1m_pct": 0.7812341470343487
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "change_1m_pct": 4.60837812333319
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "change_1m_pct": 0.2762773576601374
   }
  ]
 }
}

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

Related signals — Performance & change