STRASMORE/EXPLORE 2,170 QUERIES

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.

as of table 6×5read in context →
June side by side: the memory/storage basket, NVDA, and SPY — 6 rows by 5 columns, computed from US exchange, SIP and OPRA data.
tickerjune_return_pctvs_mu_pct_pointsrth_dollar_bnpct_of_top_turnover
SNDK31.317.3381.638.3
INTC27.513.5272.427.4
WDC19.15.1105.110.6
MU140995.7100
SPY-1.2-15.2771.577.5
NVDA-7.4-21.452352.5
Rows × columns
6 × 5
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for June side by side: the memory/storage basket, NVDA, and SPY, derived from the stored result.
ColumnTypeRangeNotes
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 →