AAPL trades by venue, latest session: off-exchange first
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 How Do Market Makers Make Money? The Spread.
| venue | venue_type | trades_thousands | pct_of_trades |
|---|---|---|---|
| FINRA Alternative Display Facility | TRF | 418.6 | 58.8 |
| Nasdaq | exchange | 122.5 | 17.2 |
| NYSE Arca, Inc. | exchange | 61.7 | 8.7 |
| Cboe BZX | exchange | 35.8 | 5 |
| Investors Exchange | exchange | 25 | 3.5 |
| Cboe EDGX | exchange | 19.8 | 2.8 |
| Members Exchange | exchange | 8.9 | 1.2 |
| New York Stock Exchange | exchange | 7.3 | 1 |
| Cboe EDGA | exchange | 3.6 | 0.5 |
| Cboe BYX | exchange | 1.9 | 0.3 |
| NYSE American, LLC | exchange | 1.5 | 0.2 |
| Nasdaq Philadelphia Exchange LLC | exchange | 1.2 | 0.2 |
| MIAX Pearl | exchange | 1.2 | 0.2 |
| Nasdaq Texas, Inc. | exchange | 1.1 | 0.2 |
| NYSE Texas, Inc. | exchange | 0.9 | 0.1 |
| NYSE National, Inc. | exchange | 0.4 | 0.1 |
| 24X National Exchange LLC | exchange | 0.4 | 0.1 |
| Texas Stock Exchange LLC | exchange | 0.1 | 0 |
| Long-Term Stock Exchange | exchange | 0 | 0 |
- Rows × columns
- 19 × 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 |
|---|---|---|---|
venue |
text | 19 distinct values | |
venue_type |
text | 2 distinct values (TRF, exchange) | |
trades_thousands |
number | 0 to 418.6 | count |
pct_of_trades |
number | 0 to 58.8 | 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 (
SELECT max(toDate(sip_timestamp))
FROM global_markets.stocks_trades
WHERE ticker = 'AAPL' AND sip_timestamp >= now() - INTERVAL 7 DAY
) AS last_session
SELECT
if(x.name = '', concat('Unmapped venue ', toString(t.exchange)), x.name) AS venue,
multiIf(x.type = 'TRF', 'TRF', x.type = '', 'unmapped', x.type) AS venue_type,
round(count() / 1000, 1) AS trades_thousands,
round(100 * count() / sum(count()) OVER (), 1) AS pct_of_trades
FROM global_markets.stocks_trades AS t
LEFT JOIN (
SELECT id, name, type FROM global_markets.stocks_exchanges
WHERE asset_class = 'stocks' AND locale = 'us'
) AS x ON t.exchange = x.id
WHERE t.ticker = 'AAPL'
AND t.sip_timestamp >= now() - INTERVAL 7 DAY
AND toDate(t.sip_timestamp) = last_session
GROUP BY venue, venue_type
ORDER BY venue_type = 'TRF' DESC, trades_thousands DESC
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 analysisHow Do Market Makers Make Money? The Spread
Average quoted spread: liquid mega-caps vs a thin small-cap (past week)
ranking 3×4
→
US stock venues: public exchanges vs off-exchange reporting facilities
ranking 2×3
→
AAPL average quoted spread by half-hour (ET), one extended session
series 32×2
→
AAPL: NBBO quote updates on the latest session
scalar 1×4
→
SPY options median spread by expiration date, near-the-money strikes only
ranking 25×4
→
Venues publishing a bid in AAPL over one half hour, July 16 2026
ranking 16×4
→
See all 2,170 queries →