change_6m_pct
Percent change vs. close ~126 trading days ago.
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_6m_pct above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_6m_pct" \
--data-urlencode "condition=> 192.53846153846155" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:22.588Z",
"signal": "change_6m_pct",
"condition": "> 192.53846153846155",
"universe": null,
"count": 2,
"results": [
{
"ticker": "ELOX",
"name": "Eloxx Pharmaceuticals, Inc. Common Stock",
"value": 1355809.0909090908
},
{
"ticker": "TANH",
"name": "Tantech Holdings Ltd. Class A Common Shares",
"value": 2409.2663112465093
}
]
}As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_6m_pct" \
--data-urlencode "condition=> 192.53846153846155" \
-d "asof=2026-06-10" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"signal": "change_6m_pct",
"condition": "> 192.53846153846155",
"universe": null,
"count": 2,
"results": [
{
"ticker": "ELOX",
"name": "Eloxx Pharmaceuticals, Inc. Common Stock",
"value": 999900
},
{
"ticker": "STAK",
"name": "STAK Inc. Class A Ordinary Shares",
"value": 1657.8849721706863
}
]
}Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_6m_pct/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 192.53846153846155", "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_6m_pct IS NOT NULL", "order": "change_6m_pct", "columns": "change_6m_pct" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:28.060Z",
"query": {
"q": "change_6m_pct IS NOT NULL",
"limit": 2,
"order": "change_6m_pct",
"dir": "desc",
"fields": [
"change_6m_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": 14.785,
"change_1d_pct": 4.193093727977454,
"gap_pct": 0.14,
"relative_volume": null,
"market_cap": 51544710,
"change_6m_pct": 1355809.0909090908
},
{
"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_6m_pct": 2409.2663112465093
}
]
}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_6m_pct IS NOT NULL", "order": "change_6m_pct", "columns": "change_6m_pct", "asof": "2026-06-10" }'Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-06-10",
"query": {
"q": "change_6m_pct IS NOT NULL",
"asof": "2026-06-10",
"interval": "auto",
"limit": 2,
"order": "change_6m_pct",
"dir": "desc",
"fields": [
"change_6m_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_6m_pct": 999900
},
{
"ticker": "STAK",
"name": "STAK Inc. Class A Ordinary Shares",
"asset_class": "stocks",
"asset_type": "CS",
"price": 7.58,
"change_1d_pct": 34.159292035398224,
"gap_pct": 14.690265486725664,
"relative_volume": 0.26001597257901865,
"market_cap": null,
"change_6m_pct": 1657.8849721706863
}
]
}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_6m_pct > 192.53846153846155", "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_6m_pct" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-09-08, trimmed)
{
"as_of": "2026-09-08T13:07:30.074Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"change_6m_pct"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-09-02",
"close": 324.96,
"change_6m_pct": 23.755142465335986
},
{
"t": "2026-09-03",
"close": 328.21,
"change_6m_pct": 26.039417572707357
},
{
"t": "2026-09-04",
"close": 321.183,
"change_6m_pct": 24.75064087625263
}
],
"MSFT": [
{
"t": "2026-09-02",
"close": 496.82,
"change_6m_pct": 22.571569595261607
},
{
"t": "2026-09-03",
"close": 510.12,
"change_6m_pct": 24.16577383851173
},
{
"t": "2026-09-04",
"close": 501.241,
"change_6m_pct": 22.564798513302044
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.