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

Who Are the Biggest Market Makers?
Where Apple trades printed on June 10, 2026, by venueranking · 2026-08-11 · 15×3Preview: 15 ranked values, largest first. Quoted spread and quote traffic over fifteen minutes, June 10, 2026table · 2026-08-11 · 5×5 Listed option series carrying data on one date, by underlyingranking · 2026-08-11 · 5×4Preview: 5 ranked values, largest first. Share of Apple volume printed off exchange, by monthseries · 2026-08-11 · 12×2Preview: a 12-point series, ending lower.
Rule 605 vs 606: Execution Quality Reports
Where AAPL prints fall by trade size, June 17, 2026ranking · 2026-08-07 · 5×3Preview: 5 ranked values, largest first. Share of June 2026 volume reported to FINRA facilitiesranking · 2026-08-07 · 5×3Preview: 5 ranked values, largest first. AAPL quoted spread across the trading clock, June 17, 2026series · 2026-08-07 · 22×3Preview: a 16-point series, ending lower. Effective spread against quoted spread by trade size, AAPLranking · 2026-08-07 · 4×4Preview: 4 ranked values, smallest first.
Where Apple trades printed on June 10, 2026, by venue

Where Apple trades printed on June 10, 2026, by venue

most recentas of ranking 15×3read in context →
Where Apple trades printed on June 10, 2026, by venue — 15 rows by 3 columns, computed from US exchange, SIP and OPRA data.
venueshare_of_volume_pctavg_print_size
FINRA Alternative Display Facility38.9347
Nasdaq37.55113
NYSE Arca, Inc.6.9735
Cboe BZX4.3151
Investors Exchange3.0858
NYSE Texas, Inc.2.78618
Cboe EDGX2.3452
Members Exchange1.7242
New York Stock Exchange1.1441
Cboe BYX0.336
Nasdaq Texas, Inc.0.2327
Cboe EDGA0.2328
MIAX Pearl0.1537
NYSE National, Inc.0.1336
Nasdaq Philadelphia Exchange LLC0.0827
the exact SQL behind every number
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
$