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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
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