The 21 sessions: regular-hours 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-26, from NVDA: NVIDIA's Full June 2026, Tick by Tick.
| et_date | close_usd | change_pct | shares_m | dollar_bn |
|---|---|---|---|---|
| 2026-06-01 | 224.43 | None | 185.5 | 41 |
| 2026-06-02 | 222.81 | -0.7 | 171.2 | 38.69 |
| 2026-06-03 | 214.9 | -3.6 | 143.9 | 31.16 |
| 2026-06-04 | 218.72 | 1.8 | 152.7 | 33.1 |
| 2026-06-05 | 205.11 | -6.2 | 187.3 | 39.09 |
| 2026-06-08 | 208.64 | 1.7 | 116.4 | 24.27 |
| 2026-06-09 | 208.2 | -0.2 | 160.5 | 32.98 |
| 2026-06-10 | 200.34 | -3.8 | 140.1 | 28.48 |
| 2026-06-11 | 204.66 | 2.2 | 131.8 | 26.71 |
| 2026-06-12 | 205.14 | 0.2 | 98.2 | 20.15 |
| 2026-06-15 | 212.45 | 3.6 | 113.9 | 24.03 |
| 2026-06-16 | 207.41 | -2.4 | 97 | 20.29 |
| 2026-06-17 | 204.68 | -1.3 | 101.9 | 21.04 |
| 2026-06-18 | 210.2 | 2.7 | 144.2 | 30.16 |
| 2026-06-22 | 208.56 | -0.8 | 100.5 | 21.13 |
| 2026-06-23 | 200.01 | -4.1 | 115.4 | 23.27 |
| 2026-06-24 | 198.96 | -0.5 | 114.1 | 22.72 |
| 2026-06-25 | 195.75 | -1.6 | 125.1 | 24.46 |
| 2026-06-26 | 191.72 | -2.1 | 116.5 | 22.55 |
| 2026-06-29 | 194.89 | 1.7 | 118 | 22.88 |
| 2026-06-30 | 199.76 | 2.5 | 119.6 | 23.73 |
- Rows × columns
- 21 × 5
- 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 | 191.72 to 224.43 | US dollars |
change_pct |
number | -6.2 to 3.6 | percent · 20 of 21 rows populated |
shares_m |
number | 97 to 187.3 | count |
dollar_bn |
number | 20.15 to 41 |
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,
dollar_bn
FROM (
SELECT et_date, close_usd, shares_m, dollar_bn,
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,
round(sum(toFloat64(close) * toFloat64(volume)) / 1e9, 2) AS dollar_bn
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
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 analysisNVDA: NVIDIA's Full June 2026, Tick by Tick
The spread by session: regular-hours median and time-weighted average (bps)
series 21×5
→
Options session by session: contracts, the call/put split, and the put/call ratio
series 21×7
→
FINRA off-exchange short volume by session: marked-short share and reported volume
series 20×4
→
Where the contracts landed: call and put volume by strike bucket
table 19×5
→
The whole US tape ranked by June 2026 regular-hours dollar volume
ranking 12×4
→
The trailing six months, recomputed live: turnover, shares, and month return
ranking 6×4
→
See all 2,170 queries →