AAPL median shares per traded minute, and the share of minutes that traded at all (ET)
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-22, from Premarket and After-Hours Trading Hours (ET).
| et_time | median_minute_volume | pct_minutes_traded |
|---|---|---|
| 04:00 | 1072 | 84.1 |
| 04:30 | 509 | 70.6 |
| 05:00 | 506 | 71.6 |
| 05:30 | 542 | 72.9 |
| 06:00 | 687 | 76.7 |
| 06:30 | 770 | 82.1 |
| 07:00 | 1889 | 95.9 |
| 07:30 | 1622 | 95.7 |
| 08:00 | 1857 | 97.3 |
| 08:30 | 2483 | 98.4 |
| 09:00 | 3435 | 98.7 |
| 09:30 | 144809 | 100 |
| 10:00 | 103684 | 100 |
| 10:30 | 84408 | 100 |
| 11:00 | 70432 | 100 |
| 11:30 | 56141 | 100 |
| 12:00 | 50169 | 100 |
| 12:30 | 45187 | 100 |
| 13:00 | 41377 | 95.2 |
| 13:30 | 42073 | 95.2 |
| 14:00 | 44963 | 95.2 |
| 14:30 | 49886 | 95.2 |
| 15:00 | 62403 | 95.2 |
| 15:30 | 107411 | 95.2 |
| 16:00 | 2171 | 93 |
| 16:30 | 1249 | 86.3 |
| 17:00 | 684 | 81.4 |
| 17:30 | 505 | 78.7 |
| 18:00 | 522 | 78.1 |
| 18:30 | 493 | 78.7 |
| 19:00 | 521 | 74.1 |
| 19:30 | 644 | 84.1 |
- Rows × columns
- 32 × 3
- Period covered
- to
- 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_time |
date | 04:00 to 19:30 | |
median_minute_volume |
number | 493 to 144,809 | count |
pct_minutes_traded |
number | 70.6 to 100 | 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 full_sessions AS (
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS session_date
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'AAPL'
AND window_start >= now() - INTERVAL 30 DAY
AND toDate(toTimeZone(window_start, 'America/New_York')) < toDate(toTimeZone(now(), 'America/New_York'))
GROUP BY session_date
HAVING max(toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 1140
)
SELECT formatDateTime(toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_time,
round(quantileDeterministic(0.5)(toFloat64(volume), toUInt64(window_start))) AS median_minute_volume,
round(100 * count() / (30 * max(uniqExact(toDate(toTimeZone(window_start, 'America/New_York')))) OVER ()), 1) AS pct_minutes_traded
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'AAPL'
AND window_start >= now() - INTERVAL 30 DAY
AND toDate(toTimeZone(window_start, 'America/New_York')) IN (SELECT session_date FROM full_sessions)
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 240 AND 1199
GROUP BY et_time
ORDER BY et_time
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 analysisPremarket and After-Hours Trading Hours (ET)
AAPL median quoted spread: regular session vs extended hours (past week, full sessions)
series 2×3
→
Stock headlines by ET hour of publication (last 30 days, all days)
ranking 24×3
→
Share of a month's volume by clock window: SPY, AAPL, NVDA (full sessions only)
table 3×5
→
The session envelope, read from SPY minute bars (last two weeks, ET)
scalar 1×7
→
Upcoming US stock market holidays and early closes
series 12×6
→
Upcoming US stock market holidays and early closes, from the exchange calendar
series 12×6
→
See all 2,170 queries →