# change_ytd_pct

Percent change since the first trading day of the calendar year.

A numeric signal column on the Tickerbot computed state table (21,082+ 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
- Intervals: 1m/1h/1d

## Query it

Every applicable form factor, grouped by endpoint family. Response payloads are real captures, sampled 2026-09-18 and trimmed; your run's values and dates will differ.

### The whole market, filtered on it — `/v2/scan` (https://tickerbot.io/docs/endpoints/scan.md)

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "change_ytd_pct IS NOT NULL", "order": "change_ytd_pct", "columns": "change_ytd_pct" }'
```

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

```bash
curl -X POST "https://api.tickerbot.io/v2/scan" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{ "q": "change_ytd_pct IS NOT NULL", "order": "change_ytd_pct", "columns": "change_ytd_pct", "asof": "2026-06-28" }'
```

## Related signals (Performance & change)

- [afterhours_change_pct](https://tickerbot.io/docs/signals/afterhours_change_pct.md)
- [change_1d_pct](https://tickerbot.io/docs/signals/change_1d_pct.md)
- [change_1m_pct](https://tickerbot.io/docs/signals/change_1m_pct.md)
- [change_1w_pct](https://tickerbot.io/docs/signals/change_1w_pct.md)
- [change_1y_pct](https://tickerbot.io/docs/signals/change_1y_pct.md)
- [change_3m_pct](https://tickerbot.io/docs/signals/change_3m_pct.md)
- [change_6m_pct](https://tickerbot.io/docs/signals/change_6m_pct.md)
- [day_change](https://tickerbot.io/docs/signals/day_change.md)
- [days_down](https://tickerbot.io/docs/signals/days_down.md)
- [days_up](https://tickerbot.io/docs/signals/days_up.md)
- [from_open_pct](https://tickerbot.io/docs/signals/from_open_pct.md)
- [premarket_change_pct](https://tickerbot.io/docs/signals/premarket_change_pct.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)

---

Full catalog: https://tickerbot.io/docs/signals/catalog.md · Schema: https://tickerbot.io/docs/schema.md · HTML: https://tickerbot.io/docs/signals/change_ytd_pct/
