STRASMORE/EXPLORE 2,170 QUERIES

Where 30 minutes of AAPL prints landed, 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-20, from What Is a Trade-Through? ISO Orders Explained.

as of ranking 12×3read in context →
Where 30 minutes of AAPL prints landed, by venue — 12 rows by 3 columns, computed from US exchange, SIP and OPRA data.
venueprint_countshare_pct
FINRA Alternative Display Facility4867051
Nasdaq2005121
NYSE Arca, Inc.1092311.4
Cboe BZX46944.9
Investors Exchange28933
Cboe EDGX23772.5
Members Exchange23172.4
New York Stock Exchange14551.5
Cboe EDGA4730.5
Nasdaq Texas, Inc.4550.5
Cboe BYX4500.5
MIAX Pearl2020.2
Rows × columns
12 × 3
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 Where 30 minutes of AAPL prints landed, by venue, derived from the stored result.
ColumnTypeRangeNotes
venue text 12 distinct values (Cboe BYX, Cboe BZX, Cboe EDGA…)
print_count number 202 to 48,670 count
share_pct number 0.2 to 51 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
    prints AS
    (
        SELECT
            toString(exchange) AS venue_id,
            count()            AS print_count
        FROM global_markets.stocks_trades
        WHERE ticker = 'AAPL'
          AND sip_timestamp >= '2026-06-10 14:00:00'
          AND sip_timestamp <  '2026-06-10 14:30:00'
        GROUP BY venue_id
    ),
    venues AS
    (
        SELECT
            toString(id) AS venue_id,
            any(name)    AS venue_name
        FROM global_markets.stocks_exchanges
        GROUP BY venue_id
    )
SELECT
    if(empty(v.venue_name), concat('Venue ', p.venue_id), v.venue_name) AS venue,
    p.print_count                                                       AS print_count,
    round(100 * p.print_count / sum(p.print_count) OVER (), 1)          AS share_pct
FROM prints AS p
LEFT JOIN venues AS v USING (venue_id)
ORDER BY print_count DESC
LIMIT 12

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 analysisWhat Is a Trade-Through? ISO Orders Explained
Share of prints by trade size: AAPL against KO ranking 5×4 Distinct venues printing AAPL inside the same second, minute by minute series 30×3 Sale conditions that mark protection-rule exceptions table 11×3 Where AAPL trades printed, June 17 2026, 10:00 to 11:30 ET ranking 17×3 Which venue held the national best bid in AAPL, June 17 2026, 10:00 to 11:30 ET ranking 16×3 Where one liquid name's shares printed, by venue (Jul 15, 2026) ranking 12×3 See all 2,170 queries →