STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

What Is a Trade-Through? ISO Orders Explained
Where 30 minutes of AAPL prints landed, by venueranking · 2026-08-20 · 12×3Preview: 12 ranked values, largest first. Distinct venues printing AAPL inside the same second, minute by minuteseries · 2026-08-20 · 30×3Preview: a 16-point series, roughly flat. Share of prints by trade size: AAPL against KOranking · 2026-08-20 · 5×4Preview: 5 ranked values, largest first. Sale conditions that mark protection-rule exceptionstable · 2026-08-20 · 11×3
Where 30 minutes of AAPL prints landed, by venue

Where 30 minutes of AAPL prints landed, by venue

most recentas 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
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
$