SPY June 2026: price return vs total return (June ex-dividend included)
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 How Monthly Stock Returns Are Measured.
may final close
756.4
june final close
746.32
june dividend per share
1.9035
price return pct
-1.33
dividend contribution pct
0.25
total return pct
-1.08
- Rows × columns
- 1 × 6
- 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 |
|---|---|---|---|
may_final_close |
number | every row is 756.4 | US dollars |
june_final_close |
number | every row is 746.32 | US dollars |
june_dividend_per_share |
number | every row is 1.9035 | |
price_return_pct |
number | every row is -1.33 | percent |
dividend_contribution_pct |
number | every row is 0.25 | percent |
total_return_pct |
number | every row is -1.08 | 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 px AS (
SELECT argMaxIf(cl, day, day <= '2026-05-31') AS may_close,
argMaxIf(cl, day, day <= '2026-06-30') AS jun_close
FROM (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS day,
argMinIf(toFloat64(open), window_start, rth) AS op,
argMaxIf(toFloat64(close), window_start, rth) AS cl
FROM (
SELECT ticker, window_start, open, close,
toTimeZone(window_start, 'America/New_York') >= toDateTime(concat(toString(toDate(toTimeZone(window_start, 'America/New_York'))), ' 09:30:00'), 'America/New_York')
AND toTimeZone(window_start, 'America/New_York') < toDateTime(concat(toString(toDate(toTimeZone(window_start, 'America/New_York'))), ' 16:00:00'), 'America/New_York') AS rth
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('NVDA', 'SPY')
AND window_start >= '2026-05-28 04:00:00'
AND window_start < '2026-07-01 08:00:00'
)
GROUP BY ticker, day
)
WHERE ticker = 'SPY'
),
dv AS (
SELECT sum(cash_amount) AS div_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'SPY'
AND ex_dividend_date >= '2026-06-01'
AND ex_dividend_date <= '2026-06-30'
)
SELECT round(may_close, 2) AS may_final_close,
round(jun_close, 2) AS june_final_close,
round(div_per_share, 4) AS june_dividend_per_share,
round(100 * (jun_close - may_close) / may_close, 2) AS price_return_pct,
round(100 * div_per_share / may_close, 2) AS dividend_contribution_pct,
round(100 * ((jun_close + div_per_share) - may_close) / may_close, 2) AS total_return_pct
FROM px CROSS JOIN dv
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 analysisHow Monthly Stock Returns Are Measured
SPY over five years, June 2021 to June 2026: price return vs return with dividends
scalar 1×7
→
NVDA June 2024: a raw close-to-close calc vs the split-adjusted return
scalar 1×6
→
SPY on June 30, 2026: official-close vs the final extended-hours print
scalar 1×3
→
Sum vs compound: twelve SPY monthly returns linked three ways
scalar 1×7
→
SPY monthly close-to-close returns: twelve months ending June 2026, simple and log
series 12×4
→
June 2026 measured two ways: close-to-close vs open-to-close, NVDA and SPY
table 2×7
→
See all 2,170 queries →