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.
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 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