The volatility complex on July 1: VIX-futures ETFs vs Tuesday's close, with SPY as the anchor
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-07-26, from Market Recap: July 1, 2026, The Day in Numbers.
| ticker | prior_close | day_close | pct_chg | range_pct |
|---|---|---|---|---|
| SPY | 746.32 | 745.69 | -0.08 | 0.95 |
| SVXY | 57.25 | 57.01 | -0.42 | 1.19 |
| UVXY | 24.87 | 25.15 | 1.13 | 3.68 |
| VIXY | 21.3 | 21.47 | 0.8 | 2.38 |
| VXX | 22.11 | 22.27 | 0.72 | 2.45 |
- Rows × columns
- 5 × 5
- 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 |
|---|---|---|---|
ticker |
text | 5 distinct values (SPY, SVXY, UVXY…) | |
prior_close |
number | 21.3 to 746.32 | US dollars |
day_close |
number | 21.47 to 745.69 | US dollars |
pct_chg |
number | -0.42 to 1.13 | percent |
range_pct |
number | 0.95 to 3.68 | percent |
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 per_name AS (
SELECT
ticker,
toFloat64(argMaxIf(close, window_start, window_start < '2026-07-01 00:00:00')) AS prior_close,
toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-01 00:00:00')) AS day_close,
maxIf(toFloat64(high), window_start >= '2026-07-01 00:00:00') AS day_high,
minIf(toFloat64(low), window_start >= '2026-07-01 00:00:00') AS day_low
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'SVXY', 'UVXY', 'VIXY', 'VXX')
AND ((window_start >= '2026-06-30 13:30:00' AND window_start < '2026-06-30 20:00:00')
OR (window_start >= '2026-07-01 13:30:00' AND window_start < '2026-07-01 20:00:00'))
GROUP BY ticker
)
SELECT
ticker,
round(prior_close, 2) AS prior_close,
round(day_close, 2) AS day_close,
round((day_close / prior_close - 1) * 100, 2) AS pct_chg,
round((day_high / day_low - 1) * 100, 2) AS range_pct
FROM per_name
ORDER BY ticker
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 analysisMarket Recap: July 1, 2026, The Day in Numbers
The day's last twelve news articles tagging MU, SNDK, STX, WDC or META (one licensed feed)
table 12×4
→
The eleven S&P sector ETFs on July 1, best to worst vs Tuesday's close
table 11×7
→
Volume leaders two ways: top 6 by dollars traded, top 4 by shares traded (one reused-symbol listing excluded pending entity verification)
table 10×6
→
The biggest names going ex-dividend on July 1, ranked by the day's dollar volume
table 8×7
→
The memory complex and the megacaps: change vs Tuesday's close, range timing, and dollar volume
table 8×9
→
SPY / QQQ / DIA / IWM: July 1 vs the June 30 close, regular hours
table 4×8
→
See all 2,170 queries →