Where Apple trades printed on June 10, 2026, by venue
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-11, from Who Are the Biggest Market Makers?.
| venue | share_of_volume_pct | avg_print_size |
|---|---|---|
| FINRA Alternative Display Facility | 38.93 | 47 |
| Nasdaq | 37.55 | 113 |
| NYSE Arca, Inc. | 6.97 | 35 |
| Cboe BZX | 4.31 | 51 |
| Investors Exchange | 3.08 | 58 |
| NYSE Texas, Inc. | 2.78 | 618 |
| Cboe EDGX | 2.34 | 52 |
| Members Exchange | 1.72 | 42 |
| New York Stock Exchange | 1.14 | 41 |
| Cboe BYX | 0.3 | 36 |
| Nasdaq Texas, Inc. | 0.23 | 27 |
| Cboe EDGA | 0.23 | 28 |
| MIAX Pearl | 0.15 | 37 |
| NYSE National, Inc. | 0.13 | 36 |
| Nasdaq Philadelphia Exchange LLC | 0.08 | 27 |
- Rows × columns
- 15 × 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 |
|---|---|---|---|
venue |
text | 15 distinct values (Cboe BYX, Cboe BZX, Cboe EDGA…) | |
share_of_volume_pct |
number | 0.08 to 38.93 | percent |
avg_print_size |
number | 27 to 618 |
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
by_venue AS
(
SELECT
toString(exchange) AS venue_id,
sum(size) AS shares,
count() AS prints
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL'
AND sip_timestamp >= '2026-06-10 00:00:00'
AND sip_timestamp < '2026-06-11 00:00:00'
GROUP BY venue_id
),
venue_names AS
(
SELECT
toString(id) AS venue_id,
any(name) AS venue_name
FROM global_markets.stocks_exchanges
WHERE asset_class = 'stocks'
GROUP BY id
)
SELECT
if(n.venue_name = '', concat('Venue ', b.venue_id), n.venue_name) AS venue,
round(100 * toFloat64(b.shares) / toFloat64((SELECT sum(shares) FROM by_venue)), 2) AS share_of_volume_pct,
round(toFloat64(b.shares) / b.prints, 0) AS avg_print_size
FROM by_venue AS b
LEFT JOIN venue_names AS n ON n.venue_id = b.venue_id
ORDER BY share_of_volume_pct DESC
LIMIT 15
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.