Median daily percent change: VXX against SPY, by calendar year
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-14, from What Is the VIX? What It Really Measures.
| year | vxx_median_daily_pct | spy_median_daily_pct | vxx_sessions |
|---|---|---|---|
| 2020 | -1.038 | 0.226 | 253 |
| 2021 | -0.906 | 0.134 | 252 |
| 2022 | -0.588 | -0.181 | 251 |
| 2023 | -0.971 | 0.071 | 250 |
| 2024 | -0.533 | 0.103 | 252 |
| 2025 | -0.372 | 0.133 | 250 |
| 2026 | -0.169 | 0.136 | 123 |
- Rows × columns
- 7 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
year |
number | 2,020 to 2,026 | |
vxx_median_daily_pct |
number | -1.038 to -0.169 | percent |
spy_median_daily_pct |
number | -0.181 to 0.226 | percent |
vxx_sessions |
number | 123 to 253 |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
WITH d AS (
SELECT ticker, date, toFloat64(close) AS c
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('VXX', 'SPY')
AND date >= toDate('2020-01-01')
AND date < toDate('2026-07-01')
),
r AS (
SELECT ticker,
date,
toYear(date) AS year,
(c / any(c) OVER (PARTITION BY ticker ORDER BY date ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) - 1) * 100 AS ret_pct
FROM d
)
SELECT year,
round(quantileDeterministicIf(0.5)(ret_pct, toUInt64(toYYYYMMDD(date)), ticker = 'VXX'), 3) AS vxx_median_daily_pct,
round(quantileDeterministicIf(0.5)(ret_pct, toUInt64(toYYYYMMDD(date)), ticker = 'SPY'), 3) AS spy_median_daily_pct,
countIf(ticker = 'VXX') AS vxx_sessions
FROM r
WHERE year >= 2020
GROUP BY year
ORDER BY year
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisWhat Is the VIX? What It Really Measures
SPY at-the-money implied volatility by time to expiry, July 15, 2026
ranking 6×3
→
SPY at-the-money implied volatility near 30 days to expiry, monthly averages (Jul 2025 to Jul 2026)
series 13×6
→
Implied daily move against the realized daily move: SPY, month by month
series 13×6
→
Implied volatility beside the movement each stock actually delivered over the prior 30 sessions
ranking 11×4
→
At-the-money implied volatility, eleven familiar tickers (July 28, 2026)
ranking 11×2
→
Share of sessions with an inverted curve: front band above the 91-180 day band, twelve months to July 31, 2026
ranking 10×4
→
See all 2,170 queries →