SPY, all 21 June sessions: close and close-over-close change
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: June 2026.
| et_date | spy_close | change_pct |
|---|---|---|
| 2026-06-01 | 758.43 | 0.3 |
| 2026-06-02 | 759.45 | 0.1 |
| 2026-06-03 | 754.19 | -0.7 |
| 2026-06-04 | 757.06 | 0.4 |
| 2026-06-05 | 737.42 | -2.6 |
| 2026-06-08 | 739.31 | 0.3 |
| 2026-06-09 | 737.05 | -0.3 |
| 2026-06-10 | 725.42 | -1.6 |
| 2026-06-11 | 737.64 | 1.7 |
| 2026-06-12 | 741.63 | 0.5 |
| 2026-06-15 | 754.66 | 1.8 |
| 2026-06-16 | 750.39 | -0.6 |
| 2026-06-17 | 741.02 | -1.2 |
| 2026-06-18 | 746.56 | 0.7 |
| 2026-06-22 | 744.37 | -0.3 |
| 2026-06-23 | 733.67 | -1.4 |
| 2026-06-24 | 733.12 | -0.1 |
| 2026-06-25 | 733.26 | 0 |
| 2026-06-26 | 729.09 | -0.6 |
| 2026-06-29 | 740.88 | 1.6 |
| 2026-06-30 | 746.32 | 0.7 |
- Rows × columns
- 21 × 3
- Period covered
- to
- 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 |
|---|---|---|---|
et_date |
date | 2026-06-01 to 2026-06-30 | |
spy_close |
number | 725.42 to 759.45 | US dollars |
change_pct |
number | -2.6 to 1.8 | 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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS et_date,
round(argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199), 2) AS spy_close,
round((argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) / any(prev) - 1) * 100, 1) AS change_pct
FROM global_markets.delayed_stocks_minute_aggs
INNER JOIN (
SELECT d, lagInFrame(c) OVER (ORDER BY d ASC ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prev
FROM (
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS d, argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) AS c
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY' AND window_start >= toDateTime('2026-05-29 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
GROUP BY d
)
) AS p ON toDate(toTimeZone(window_start, 'America/New_York')) = p.d
WHERE ticker = 'SPY' AND window_start >= toDateTime('2026-06-01 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
GROUP BY et_date
ORDER BY et_date