View as markdown

change_3m_pct

Percent change vs. close ~63 trading days ago.

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_3m_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_3m_pct" \
  --data-urlencode "condition=> 120.74193548387096" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:21.989Z",
 "signal": "change_3m_pct",
 "condition": "> 120.74193548387096",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "TANH",
   "name": "Tantech Holdings Ltd. Class A Common Shares",
   "value": 4606.666666666666
  },
  {
   "ticker": "LIMN",
   "name": "Liminatus Pharma, Inc. Class A Common Stock",
   "value": 2483.6849507735587
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_3m_pct" \
  --data-urlencode "condition=> 120.74193548387096" \
  -d "asof=2026-06-10" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "signal": "change_3m_pct",
 "condition": "> 120.74193548387096",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ELOX",
   "name": "Eloxx Pharmaceuticals, Inc. Common Stock",
   "value": 999900
  },
  {
   "ticker": "AMPGR",
   "name": "Amplitech Group, Inc. Series A Right",
   "value": 1892.8571428571427
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_3m_pct/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 120.74193548387096", "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_3m_pct IS NOT NULL", "order": "change_3m_pct", "columns": "change_3m_pct" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:26.952Z",
 "query": {
  "q": "change_3m_pct IS NOT NULL",
  "limit": 2,
  "order": "change_3m_pct",
  "dir": "desc",
  "fields": [
   "change_3m_pct"
  ],
  "full": false,
  "universe": null,
  "asset_class": null
 },
 "count": 2,
 "results": [
  {
   "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_3m_pct": 4606.666666666666
  },
  {
   "ticker": "LIMN",
   "name": "Liminatus Pharma, Inc. Class A Common Stock",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 3.68,
   "change_1d_pct": -0.540540540540541,
   "gap_pct": 3.92,
   "relative_volume": null,
   "market_cap": 4983297,
   "change_3m_pct": 2483.6849507735587
  }
 ]
}
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_3m_pct IS NOT NULL", "order": "change_3m_pct", "columns": "change_3m_pct", "asof": "2026-06-10" }'
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-06-10",
 "query": {
  "q": "change_3m_pct IS NOT NULL",
  "asof": "2026-06-10",
  "interval": "auto",
  "limit": 2,
  "order": "change_3m_pct",
  "dir": "desc",
  "fields": [
   "change_3m_pct"
  ],
  "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": 11,
   "change_1d_pct": -0.09082652134423058,
   "gap_pct": -9.173478655767482,
   "relative_volume": 7.522622007395535,
   "market_cap": null,
   "change_3m_pct": 999900
  },
  {
   "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_3m_pct": 1892.8571428571427
  }
 ]
}
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_3m_pct > 120.74193548387096", "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_3m_pct" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-09-08, trimmed)
{
 "as_of": "2026-09-08T13:07:29.411Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "change_3m_pct"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-09-02",
    "close": 324.96,
    "change_3m_pct": 4.712821504544573
   },
   {
    "t": "2026-09-03",
    "close": 328.21,
    "change_3m_pct": 5.410146836744523
   },
   {
    "t": "2026-09-04",
    "close": 321.183,
    "change_3m_pct": 4.504132231404956
   }
  ],
  "MSFT": [
   {
    "t": "2026-09-02",
    "close": 496.82,
    "change_3m_pct": 16.221275799129508
   },
   {
    "t": "2026-09-03",
    "close": 510.12,
    "change_3m_pct": 19.12720476579839
   },
   {
    "t": "2026-09-04",
    "close": 501.241,
    "change_3m_pct": 20.296877624978983
   }
  ]
 }
}

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

Related signals — Performance & change