Shares printed by New York clock hour: AAPL, MSFT, NVDA, SPY and TSLA, week of July 13, 2026
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-08-01, from Can You Trade US Stocks 24 Hours a Day?.
| et_hour | volume_millions | pct_of_week |
|---|---|---|
| 04:00 | 7.4 | 0.59 |
| 05:00 | 1.6 | 0.13 |
| 06:00 | 2.1 | 0.17 |
| 07:00 | 7.5 | 0.6 |
| 08:00 | 9 | 0.72 |
| 09:00 | 204 | 16.34 |
| 10:00 | 206.4 | 16.53 |
| 11:00 | 142.2 | 11.39 |
| 12:00 | 144.8 | 11.6 |
| 13:00 | 117.8 | 9.44 |
| 14:00 | 121.8 | 9.75 |
| 15:00 | 233.4 | 18.7 |
| 16:00 | 43.8 | 3.51 |
| 17:00 | 2.6 | 0.21 |
| 18:00 | 1.9 | 0.15 |
| 19:00 | 2.2 | 0.18 |
- Rows × columns
- 16 × 3
- 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 |
|---|---|---|---|
et_hour |
text | 16 distinct values (04:00, 05:00, 06:00…) | |
volume_millions |
number | 1.6 to 233.4 | count |
pct_of_week |
number | 0.13 to 18.7 | 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 sum(volume)
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'TSLA')
AND window_start >= toDateTime('2026-07-13 08:00:00', 'UTC')
AND window_start < toDateTime('2026-07-18 00:00:00', 'UTC')
) AS week_shares
SELECT formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:00') AS et_hour,
round(toFloat64(sum(volume)) / 1000000, 1) AS volume_millions,
round(100 * toFloat64(sum(volume)) / toFloat64(week_shares), 2) AS pct_of_week
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'TSLA')
AND window_start >= toDateTime('2026-07-13 08:00:00', 'UTC')
AND window_start < toDateTime('2026-07-18 00:00:00', 'UTC')
GROUP BY et_hour
ORDER BY et_hour
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 analysisCan You Trade US Stocks 24 Hours a Day?
NVDA on July 14, 2026: price and volume in 30 minute buckets, 4:00 a.m. to 8:00 p.m. ET
series 32×3
→
AAPL quoted spread by New York clock hour, July 14, 2026: median and 90th percentile minute
ranking 7×4
→
Share of weekly volume by session window: seven household names, week of July 13, 2026
ranking 7×4
→
Quoted spread through the session: large cap fund vs micro cap fund
series 79×3
→
MU: rolling 20-session vs 90-session ADV, December 2025 through July 10, 2026 (sampled every third session)
series 49×3
→
AAPL: average NBBO updates per minute by half-hour bucket (ET, 4 a.m. to 8 p.m.)
series 32×3
→
See all 2,170 queries →