STRASMORE/EXPLORE 2,170 QUERIES

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.

as of ranking 19×4read in context →
AAPL trades by venue, latest session: off-exchange first — 19 rows by 4 columns, computed from US exchange, SIP and OPRA data.
venuevenue_typetrades_thousandspct_of_trades
FINRA Alternative Display FacilityTRF418.658.8
Nasdaqexchange122.517.2
NYSE Arca, Inc.exchange61.78.7
Cboe BZXexchange35.85
Investors Exchangeexchange253.5
Cboe EDGXexchange19.82.8
Members Exchangeexchange8.91.2
New York Stock Exchangeexchange7.31
Cboe EDGAexchange3.60.5
Cboe BYXexchange1.90.3
NYSE American, LLCexchange1.50.2
Nasdaq Philadelphia Exchange LLCexchange1.20.2
MIAX Pearlexchange1.20.2
Nasdaq Texas, Inc.exchange1.10.2
NYSE Texas, Inc.exchange0.90.1
NYSE National, Inc.exchange0.40.1
24X National Exchange LLCexchange0.40.1
Texas Stock Exchange LLCexchange0.10
Long-Term Stock Exchangeexchange00
Rows × columns
19 × 4
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for AAPL trades by venue, latest session: off-exchange first, derived from the stored result.
ColumnTypeRangeNotes
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 →