View as markdown
Concepts › SignalsPrice action Performance & change

change_6m

Percent change vs. close ~126 trading days ago.

Watch this signal live on real tickers: Open in Explore →

At a glance

Typenumeric
GroupPrice action
CategoryPerformance & change
Unit%
Update cadencepost-close daily
Intervals1m/1h/1d
Universeall tickers
Historyfull · since 2004
Nullableyes — 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 →

Live — every ticker with change_6m above a cutoff
curl -G "https://api.tickerbot.io/v2/signals/change_6m" \
  --data-urlencode "condition=> 2.3427" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:09.935Z",
 "signal": "change_6m",
 "condition": "> 2.3427",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ELOX",
   "name": "Eloxx Pharmaceuticals, Inc. Common Stock",
   "value": 16771.7273
  },
  {
   "ticker": "WETO",
   "name": "Wetour Robotics Limited Ordinary Shares",
   "value": 51.3721
  }
 ]
}
As-of — the same read at a past date
curl -G "https://api.tickerbot.io/v2/signals/change_6m" \
  --data-urlencode "condition=> 2.3427" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "signal": "change_6m",
 "condition": "> 2.3427",
 "universe": null,
 "count": 2,
 "results": [
  {
   "ticker": "ELOX",
   "name": "Eloxx Pharmaceuticals, Inc. Common Stock",
   "value": 274399.99999999994
  },
  {
   "ticker": "GTOP",
   "name": "Goldman Sachs Technology Opportunities ETF",
   "value": 57533.78712871288
  }
 ]
}
Subscribe — webhook when a ticker starts matching
curl -X POST "https://api.tickerbot.io/v2/signals/change_6m/subscribe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"condition": "> 2.3427", "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 →

Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=change_6m IS NOT NULL" \
  -d "order=change_6m" -d "columns=change_6m" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:13.064Z",
 "query": {
  "q": "change_6m IS NOT NULL",
  "limit": 2,
  "order": "change_6m",
  "dir": "desc",
  "fields": [
   "change_6m"
  ],
  "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": 18.455,
   "day_change_pct": -0.0163,
   "gap_pct": 0.0059,
   "relative_volume": null,
   "market_cap": 64465250,
   "change_6m": 16771.7273
  },
  {
   "ticker": "WETO",
   "name": "Wetour Robotics Limited Ordinary Shares",
   "asset_class": "stocks",
   "asset_type": "CS",
   "price": 35.36,
   "day_change_pct": 3.3017,
   "gap_pct": 0.236,
   "relative_volume": 3.2667,
   "market_cap": 6746976,
   "change_6m": 51.3721
  }
 ]
}
As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
  --data-urlencode "q=change_6m IS NOT NULL" \
  -d "order=change_6m" -d "columns=change_6m" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-05-20",
 "query": {
  "q": "change_6m IS NOT NULL",
  "asof": "2026-05-20",
  "interval": "auto",
  "limit": 2,
  "order": "change_6m",
  "dir": "desc",
  "fields": [
   "change_6m"
  ],
  "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_6m": 274399.99999999994
  },
  {
   "ticker": "GTOP",
   "name": "Goldman Sachs Technology Opportunities ETF",
   "asset_class": "stocks",
   "asset_type": "ETF",
   "price": 46.5681,
   "day_change_pct": 1.6717464587008597,
   "gap_pct": 0.5405830262169635,
   "relative_volume": 5.124026830673182,
   "market_cap": null,
   "change_6m": 57533.78712871288
  }
 ]
}
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 > 2.3427", "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 →

History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,change_6m" \
  -H "Authorization: Bearer YOUR_KEY"
Response (sampled 2026-08-18, trimmed)
{
 "as_of": "2026-08-18T00:23:15.268Z",
 "interval": "1d",
 "tickers": [
  "AAPL",
  "MSFT"
 ],
 "columns": [
  "close",
  "change_6m"
 ],
 "count": 6,
 "series": {
  "AAPL": [
   {
    "t": "2026-08-12",
    "close": 302.25,
    "change_6m": 10.419102601578478
   },
   {
    "t": "2026-08-13",
    "close": 305.26,
    "change_6m": 10.799274047186946
   },
   {
    "t": "2026-08-14",
    "close": 305.93,
    "change_6m": 16.881901195888883
   }
  ],
  "MSFT": [
   {
    "t": "2026-08-12",
    "close": 492.43,
    "change_6m": 19.1676143925279
   },
   {
    "t": "2026-08-13",
    "close": 496.88,
    "change_6m": 22.88250859361476
   },
   {
    "t": "2026-08-14",
    "close": 495.4,
    "change_6m": 23.226906231335875
   }
  ]
 }
}

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

Related signals — Performance & change