June side by side: the memory/storage basket, NVDA, and SPY
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-13, from MU: The Biggest Tape of June 2026.
| ticker | june_return_pct | vs_mu_pct_points | rth_dollar_bn | pct_of_top_turnover |
|---|---|---|---|---|
| SNDK | 31.3 | 17.3 | 381.6 | 38.3 |
| INTC | 27.5 | 13.5 | 272.4 | 27.4 |
| WDC | 19.1 | 5.1 | 105.1 | 10.6 |
| MU | 14 | 0 | 995.7 | 100 |
| SPY | -1.2 | -15.2 | 771.5 | 77.5 |
| NVDA | -7.4 | -21.4 | 523 | 52.5 |
- Rows × columns
- 6 × 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 | 6 distinct values (INTC, MU, NVDA…) | |
june_return_pct |
number | -7.4 to 31.3 | percent |
vs_mu_pct_points |
number | -21.4 to 17.3 | percent |
rth_dollar_bn |
number | 105.1 to 995.7 | |
pct_of_top_turnover |
number | 10.6 to 100 | 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 (
SELECT (argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) / argMinIf(toFloat64(open), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) - 1) * 100
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'MU' AND window_start >= toDateTime('2026-06-01 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
) AS mu_return
SELECT ticker,
round(june_return_pct, 1) AS june_return_pct,
round(june_return_pct - mu_return, 1) AS vs_mu_pct_points,
rth_dollar_bn,
round(100 * rth_dollar_bn / max(rth_dollar_bn) OVER (), 1) AS pct_of_top_turnover
FROM (
SELECT ticker,
(argMaxIf(toFloat64(close), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) / argMinIf(toFloat64(open), window_start, (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) - 1) * 100 AS june_return_pct,
round(sumIf(toFloat64(close) * toFloat64(volume), (toHour(window_start) * 60 + toMinute(window_start)) BETWEEN 810 AND 1199) / 1e9, 1) AS rth_dollar_bn
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('MU', 'SNDK', 'WDC', 'INTC', 'NVDA', 'SPY')
AND window_start >= toDateTime('2026-06-01 00:00:00') AND window_start < toDateTime('2026-07-01 00:00:00')
GROUP BY ticker
)
ORDER BY june_return_pct DESC
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 analysisMU: The Biggest Tape of June 2026
MU's last six reported quarters on file: revenue, net income, diluted EPS
table 6×5
→
MU by month: annualized realized volatility, average session range, biggest single-day move
table 6×6
→
The spread by session: regular-hours median in cents and basis points
series 21×5
→
The 21 sessions: close, close-over-close change, full-day volume
series 21×4
→
Where the contracts landed: call and put volume by strike bucket
ranking 16×4
→
FINRA off-exchange short volume: MU's June coverage and marked-short share
ranking 16×3
→
See all 2,170 queries →