Every June on the tape: SPY, recomputed identically by year (session counts shown)
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.
| y | sessions | june_return_pct |
|---|---|---|
| 2004 | 21 | 1.8 |
| 2005 | 22 | -0.4 |
| 2006 | 22 | -0.3 |
| 2007 | 21 | -2.5 |
| 2008 | 21 | -8.6 |
| 2009 | 22 | -1.8 |
| 2010 | 22 | -4.8 |
| 2011 | 22 | -1.9 |
| 2012 | 21 | 5.3 |
| 2013 | 20 | -2.2 |
| 2014 | 21 | 1.4 |
| 2015 | 22 | -2.9 |
| 2016 | 22 | 0.2 |
| 2017 | 22 | -0.1 |
| 2018 | 21 | -0.4 |
| 2019 | 20 | 6.5 |
| 2020 | 22 | 1.6 |
| 2021 | 22 | 1.3 |
| 2022 | 21 | -9.1 |
| 2023 | 21 | 6 |
| 2024 | 19 | 2.8 |
| 2025 | 20 | 5.1 |
| 2026 | 21 | -1.2 |
- Rows × columns
- 23 × 3
- 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 |
|---|---|---|---|
y |
number | 2,004 to 2,026 | |
sessions |
number | 19 to 22 | |
june_return_pct |
number | -9.1 to 6.5 | 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 toYear(toTimeZone(window_start, 'America/New_York')) AS y,
uniqExact(toDate(toTimeZone(window_start, 'America/New_York'))) AS sessions,
round((argMax(toFloat64(close), window_start) / argMin(toFloat64(open), window_start) - 1) * 100, 1) AS june_return_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY')
AND window_start >= toDateTime('2003-01-01 00:00:00')
AND window_start < toDateTime('2026-07-01 00:00:00')
AND toMonth(toTimeZone(window_start, 'America/New_York')) = 6
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY y
HAVING sessions >= 17
ORDER BY y ASC
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: June 2026
Ex-dividend events by day through June
ranking 22×2
→
Treasury yields through June: 10-year, 2-year, and the 2s10s spread
ranking 21×4
→
Monthly returns, January through June 2026, recomputed live (SPY and QQQ)
ranking 12×4
→
June regular-hours dollar volume, whole tape (one reused-symbol listing excluded pending entity verification)
ranking 8×3
→
Short-interest settlements on file: May 29, June 15, and June 30
ranking 3×2
→
SPY, all 21 June sessions: close and close-over-close change
series 21×3
→
See all 2,170 queries →