NYSE Parity and D-Quotes: How Fills Allocate
Average shares per trade, ten household namesranking ·
2026-08-22 · 10×3
Coca-Cola closing print as a share of session volume, by monthseries ·
2026-08-22 · 25×2
Share of regular-session volume printed in the 16:00 ET minuteranking ·
2026-08-22 · 10×3
Average shares per trade, ten household names
Average shares per trade, ten household names
| ticker | listing_venue | avg_shares_per_trade |
|---|---|---|
| INTC | Nasdaq listed | 118 |
| CSCO | Nasdaq listed | 98 |
| WMT | NYSE listed | 87 |
| XOM | NYSE listed | 87 |
| PEP | Nasdaq listed | 68 |
| KO | NYSE listed | 63 |
| AAPL | Nasdaq listed | 61 |
| JPM | NYSE listed | 55 |
| JNJ | NYSE listed | 54 |
| MSFT | Nasdaq listed | 50 |
the exact SQL behind every number
SELECT
ticker,
multiIf(ticker IN ('KO', 'JPM', 'XOM', 'JNJ', 'WMT'), 'NYSE listed', 'Nasdaq listed') AS listing_venue,
round(toFloat64(sum(volume)) / sum(transactions), 0) AS avg_shares_per_trade
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('KO', 'JPM', 'XOM', 'JNJ', 'WMT', 'AAPL', 'MSFT', 'INTC', 'CSCO', 'PEP')
AND date >= today() - 120
AND date < today() - 4
GROUP BY ticker
HAVING sum(transactions) > 0
ORDER BY avg_shares_per_trade DESC
More from this analysisNYSE Parity and D-Quotes: How Fills Allocate
Share of regular-session volume printed in the 16:00 ET minute
ranking 10×3
→
Coca-Cola closing print as a share of session volume, by month
series 25×2
→
Gap between the 3:50 p.m. price and the official close, July 2026 sessions
ranking 6×3
→
How often the close finished above the 3:50 p.m. price, July 2026 sessions
ranking 6×3
→
See all 2,170 queries →