Share of one minute windows carrying at least N shares (June 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-14, from Does Modifying an Order Lose Queue Priority?.
| shares_ahead | aapl_pct_of_minutes | ko_pct_of_minutes |
|---|---|---|
| 500 | 100 | 100 |
| 1000 | 100 | 100 |
| 2000 | 100 | 100 |
| 4000 | 100 | 99.9 |
| 8000 | 100 | 94.3 |
| 16000 | 100 | 63.8 |
| 32000 | 95.4 | 25.8 |
| 64000 | 59.8 | 7.2 |
| 128000 | 22.2 | 2.3 |
- Rows × columns
- 9 × 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 |
|---|---|---|---|
shares_ahead |
number | 500 to 128,000 | count |
aapl_pct_of_minutes |
number | 22.2 to 100 | percent |
ko_pct_of_minutes |
number | 2.3 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 minute_volume AS
(
SELECT
ticker,
toStartOfMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute,
sum(volume) AS shares
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'KO')
AND window_start >= '2026-06-01'
AND window_start < '2026-07-01'
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY ticker, et_minute
)
SELECT
q.ahead AS shares_ahead,
round(100 * countIf(mv.ticker = 'AAPL' AND mv.shares >= q.ahead) / countIf(mv.ticker = 'AAPL'), 1) AS aapl_pct_of_minutes,
round(100 * countIf(mv.ticker = 'KO' AND mv.shares >= q.ahead) / countIf(mv.ticker = 'KO'), 1) AS ko_pct_of_minutes
FROM minute_volume AS mv
CROSS JOIN
(
SELECT arrayJoin([500, 1000, 2000, 4000, 8000, 16000, 32000, 64000, 128000]) AS ahead
) AS q
GROUP BY q.ahead
ORDER BY q.ahead
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 analysisDoes Modifying an Order Lose Queue Priority?
How often the quoted spread sits at a single cent (10 June 2026 session)
ranking 6×3
→
How fast the tape drains a queue, by time of day (AAPL, June 2026)
series 26×3
→
Distinct best bid prices per quarter hour (AAPL and KO, 10 June 2026)
series 26×3
→
Average shares per trade print, June 2026
ranking 8×2
→
Average quoted spread and time at a one cent spread, midday June 10 2026
ranking 6×3
→
How AAPL prints break down by trade size, June 10 2026
ranking 5×3
→
See all 2,170 queries →