Week-over-week: the four index ETFs against the prior Friday's close
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: Week of June 29, 2026.
| ticker | prior_friday_close | week_close | week_change_pct | prior_week_change_pct |
|---|---|---|---|---|
| DIA | 517.5 | 527.83 | 2 | 0.4 |
| IWM | 297.61 | 297.53 | 0 | 0.7 |
| QQQ | 705.84 | 712.74 | 1 | -4.6 |
| SPY | 729.09 | 744.8 | 2.2 | -2.3 |
- Rows × columns
- 4 × 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 | 4 distinct values (DIA, IWM, QQQ…) | |
prior_friday_close |
number | 297.61 to 729.09 | US dollars |
week_close |
number | 297.53 to 744.8 | US dollars |
week_change_pct |
number | 0 to 2.2 | percent |
prior_week_change_pct |
number | -4.6 to 0.7 | 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
SELECT ticker,
round(argMaxIf(toFloat64(close), window_start, toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-06-26') AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199), 2) AS prior_friday_close,
round(argMaxIf(toFloat64(close), window_start, toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2026-06-29') AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199), 2) AS week_close,
round((argMaxIf(toFloat64(close), window_start, toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2026-06-29') AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199)
/ argMaxIf(toFloat64(close), window_start, toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-06-26') AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) - 1) * 100, 1) AS week_change_pct,
round((argMaxIf(toFloat64(close), window_start, toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-06-26') AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199)
/ argMaxIf(toFloat64(close), window_start, toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-06-18') AND (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) - 1) * 100, 1) AS prior_week_change_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'QQQ', 'DIA', 'IWM')
AND window_start >= toDateTime('2026-06-15 00:00:00') AND window_start < toDateTime('2026-07-03 00:00:00')
GROUP BY ticker
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: Week of June 29, 2026
Regular-hours dollar volume, week of June 29 (one reused-symbol listing excluded pending entity verification)
ranking 8×3
→
Contracts traded during the week, by expiry date (single-pass scan; batch-generated)
ranking 6×3
→
Treasury yields through the week (July 2 print not yet ingested at generation)
ranking 5×4
→
Session by session: SPY close, change, and full-day volume
series 4×4
→
FINRA off-exchange short volume by session: coverage and marked-short share
ranking 4×4
→
The session receipt: four traded days, one Friday closure, verified from the tape
scalar 1×3
→
See all 2,170 queries →