Share of weekly volume by session window: seven household names, 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?.
| ticker | premarket_pct | core_session_pct | after_hours_pct |
|---|---|---|---|
| SPY | 2.64 | 86.76 | 10.6 |
| PG | 0.25 | 94.03 | 5.73 |
| NVDA | 3.21 | 94.38 | 2.41 |
| MSFT | 3.07 | 94.43 | 2.51 |
| AAPL | 1.67 | 94.54 | 3.79 |
| TSLA | 2.38 | 96.13 | 1.49 |
| KO | 0.81 | 96.68 | 2.51 |
- Rows × columns
- 7 × 4
- 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 |
|---|---|---|---|
ticker |
text | 7 distinct values (AAPL, KO, MSFT…) | |
premarket_pct |
number | 0.25 to 3.21 | percent |
core_session_pct |
number | 86.76 to 96.68 | percent |
after_hours_pct |
number | 1.49 to 10.6 | 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 bars AS (
SELECT ticker,
toTimeZone(window_start, 'America/New_York') AS et,
toFloat64(volume) AS shares
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'TSLA', 'SPY', 'KO', 'PG')
AND window_start >= toDateTime('2026-07-13 08:00:00', 'UTC')
AND window_start < toDateTime('2026-07-18 00:00:00', 'UTC')
)
SELECT ticker,
round(100 * sumIf(shares, toHour(et) * 60 + toMinute(et) < 570) / sum(shares), 2) AS premarket_pct,
round(100 * sumIf(shares, toHour(et) * 60 + toMinute(et) BETWEEN 570 AND 959) / sum(shares), 2) AS core_session_pct,
round(100 * sumIf(shares, toHour(et) * 60 + toMinute(et) >= 960) / sum(shares), 2) AS after_hours_pct
FROM bars
GROUP BY ticker
ORDER BY premarket_pct + after_hours_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 analysisCan You Trade US Stocks 24 Hours a Day?
AAPL quoted spread by New York clock hour, July 14, 2026: median and 90th percentile minute
ranking 7×4
→
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
→
Shares printed by New York clock hour: AAPL, MSFT, NVDA, SPY and TSLA, week of July 13, 2026
series 16×3
→
Stock headlines by ET hour of publication (last 30 days, all days)
ranking 24×3
→
AAPL trades by venue, latest session: off-exchange first
ranking 19×4
→
Venues publishing a bid in AAPL over one half hour, July 16 2026
ranking 16×4
→
See all 2,170 queries →