change_3m
Percent change vs. close ~63 trading days ago.
At a glance
| Type | numeric |
| Group | Price action |
| Category | Performance & change |
| Unit | % |
| Update cadence | post-close daily |
| Intervals | 1m/1h/1d |
| Universe | all tickers |
| History | full · since 2003 |
| Nullable | yes — NULL where not applicable |
Price change over standard horizons — today through 1 year — plus streaks and day-mover flags.
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 →
curl -G "https://api.tickerbot.io/v2/signals/change_3m" \
--data-urlencode "condition=> 1.5809" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:08.763Z",
"signal": "change_3m",
"condition": "> 1.5809",
"universe": null,
"count": 2,
"results": [
{
"ticker": "QMMM",
"name": "QMMM Holdings Limited Class A Ordinary Shares",
"value": 93.7619
},
{
"ticker": "DFNS",
"name": "T3 Defense Inc. Common Stock",
"value": 68.6614
}
]
}curl -G "https://api.tickerbot.io/v2/signals/change_3m" \
--data-urlencode "condition=> 1.5809" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "change_3m",
"condition": "> 1.5809",
"universe": null,
"count": 2,
"results": [
{
"ticker": "ELOX",
"name": "Eloxx Pharmaceuticals, Inc. Common Stock",
"value": 548899.9999999999
},
{
"ticker": "TCGL",
"name": "TechCreate Group Ltd.",
"value": 3056.8228105906314
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/change_3m/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 1.5809", "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 →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=change_3m IS NOT NULL" \
-d "order=change_3m" -d "columns=change_3m" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:11.416Z",
"query": {
"q": "change_3m IS NOT NULL",
"limit": 2,
"order": "change_3m",
"dir": "desc",
"fields": [
"change_3m"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "QMMM",
"name": "QMMM Holdings Limited Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": null,
"day_change_pct": null,
"gap_pct": null,
"relative_volume": null,
"market_cap": null,
"change_3m": 93.7619
},
{
"ticker": "DFNS",
"name": "T3 Defense Inc. Common Stock",
"asset_class": "stocks",
"asset_type": "CS",
"price": 30.251,
"day_change_pct": -0.1045,
"gap_pct": -0.1526,
"relative_volume": null,
"market_cap": 34134521,
"change_3m": 68.6614
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=change_3m IS NOT NULL" \
-d "order=change_3m" -d "columns=change_3m" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "change_3m IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "change_3m",
"dir": "desc",
"fields": [
"change_3m"
],
"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,
"change_3m": 548899.9999999999
},
{
"ticker": "TCGL",
"name": "TechCreate Group Ltd.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 155,
"day_change_pct": 0,
"gap_pct": 0,
"relative_volume": null,
"market_cap": null,
"change_3m": 3056.8228105906314
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "change_3m > 1.5809", "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 →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,change_3m" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:13.617Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"change_3m"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"change_3m": 2.508480325644502
},
{
"t": "2026-08-13",
"close": 305.26,
"change_3m": 2.1353765851373607
},
{
"t": "2026-08-14",
"close": 305.93,
"change_3m": 2.5837497065826165
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"change_3m": 20.774946661107975
},
{
"t": "2026-08-13",
"close": 496.88,
"change_3m": 22.627773253374794
},
{
"t": "2026-08-14",
"close": 495.4,
"change_3m": 20.942529858583892
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.