# change_3m

Percent change vs. close ~63 trading days ago.

A numeric signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Price action
- Category: Performance & change
- Type: numeric
- Unit: %
- Update cadence: post-close daily
- Intervals: 1m/1h/1d
- Universe: all tickers
- History: full · since 2003
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with change_3m above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/change_3m" \
  --data-urlencode "condition=> 1.5809" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### Subscribe — webhook on a market-wide condition

```bash
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. (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,change_3m" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
   }
  ]
 }
}
```

## Related signals (Performance & change)

- [change_1m](https://tickerbot.io/docs/signals/change_1m.md)
- [change_1w](https://tickerbot.io/docs/signals/change_1w.md)
- [change_1y](https://tickerbot.io/docs/signals/change_1y.md)
- [change_6m](https://tickerbot.io/docs/signals/change_6m.md)
- [change_ytd](https://tickerbot.io/docs/signals/change_ytd.md)
- [day_change](https://tickerbot.io/docs/signals/day_change.md)
- [day_change_pct](https://tickerbot.io/docs/signals/day_change_pct.md)
- [days_down](https://tickerbot.io/docs/signals/days_down.md)
- [days_up](https://tickerbot.io/docs/signals/days_up.md)
- [from_open_pc](https://tickerbot.io/docs/signals/from_open_pc.md)
- [price_down_3pct](https://tickerbot.io/docs/signals/price_down_3pct.md)
- [price_up_3pct](https://tickerbot.io/docs/signals/price_up_3pct.md)
- [top_gainer](https://tickerbot.io/docs/signals/top_gainer.md)
- [top_loser](https://tickerbot.io/docs/signals/top_loser.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=change_3m · HTML: https://tickerbot.io/docs/signals/change_3m/
