The 21 sessions: close, close-over-close change, full-day volume
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.
| et_date | close_usd | change_pct | shares_m |
|---|---|---|---|
| 2026-06-01 | 1034.83 | None | 43.7 |
| 2026-06-02 | 1064.08 | 2.8 | 43 |
| 2026-06-03 | 1079.56 | 1.5 | 37.5 |
| 2026-06-04 | 997.17 | -7.6 | 51.6 |
| 2026-06-05 | 864.01 | -13.4 | 71.3 |
| 2026-06-08 | 949.47 | 9.9 | 50.5 |
| 2026-06-09 | 935.89 | -1.4 | 70.2 |
| 2026-06-10 | 891.5 | -4.7 | 52.8 |
| 2026-06-11 | 995.65 | 11.7 | 53.7 |
| 2026-06-12 | 980.71 | -1.5 | 38.9 |
| 2026-06-15 | 1087.8 | 10.9 | 39.8 |
| 2026-06-16 | 1020.83 | -6.2 | 41.6 |
| 2026-06-17 | 1041.41 | 2 | 43.4 |
| 2026-06-18 | 1132.01 | 8.7 | 48.2 |
| 2026-06-22 | 1211.2 | 7 | 46.3 |
| 2026-06-23 | 1051.42 | -13.2 | 54 |
| 2026-06-24 | 1048.5 | -0.3 | 64.6 |
| 2026-06-25 | 1214.59 | 15.8 | 77.2 |
| 2026-06-26 | 1122.92 | -7.5 | 58.8 |
| 2026-06-29 | 1145 | 2 | 57.8 |
| 2026-06-30 | 1151.01 | 0.5 | 37.1 |
- Rows × columns
- 21 × 4
- Period covered
- to
- Computed
- Completeness
- Some fields are partly empty — see the columns below
- 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 | |
close_usd |
number | 864.01 to 1,214.59 | US dollars |
change_pct |
number | -13.4 to 15.8 | percent · 20 of 21 rows populated |
shares_m |
number | 37.1 to 77.2 | count |
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 et_date, close_usd,
round(if(prev_close = 0, NULL, (close_usd / prev_close - 1) * 100), 1) AS change_pct,
shares_m
FROM (
SELECT et_date, close_usd, shares_m,
lagInFrame(close_usd) OVER (ORDER BY et_date ASC ROWS BETWEEN 1 PRECEDING AND CURRENT ROW) AS prev_close
FROM (
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 close_usd,
round(toFloat64(sum(volume)) / 1e6, 1) AS shares_m
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')
GROUP BY et_date
)
)
ORDER BY et_date
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
The spread by session: regular-hours median in cents and basis points
series 21×5
→
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
→
What June's MU coverage was about: the vendor's own article tags, counted
ranking 10×3
→
The whole US tape ranked by June 2026 regular-hours dollar volume (one reused-symbol listing excluded pending entity verification)
ranking 10×3
→
June side by side: the memory/storage basket, NVDA, and SPY
table 6×5
→
See all 2,170 queries →