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

2,170 answered market questions

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

What Is the Closing Auction? (Closing Cross)
Quarter-end (June 30) vs. mid-month (June 16, 2026): the same three closing auctionstable · 2026-07-26 · 3×8 The tape's own labels for the close, straight from the code dictionaryranking · 2026-07-26 · 4×3Preview: 4 ranked values, smallest first. The closing auction vs. everything else: SPY, AAPL, NVDA on July 2, 2026table · 2026-07-26 · 3×10 The receipt: AAPL's auction print vs. its last continuous trade, July 2, 2026scalar · 2026-07-26 · 1×12390
Quarter-end (June 30) vs. mid-month (June 16, 2026): the same three closing auctions

Quarter-end (June 30) vs. mid-month (June 16, 2026): the same three closing auctions

most recentas of table 3×8read in context →
Quarter-end (June 30) vs. mid-month (June 16, 2026): the same three closing auctions — 3 rows by 8 columns, computed from US exchange, SIP and OPRA data.
tickerjun16_auction_print_countjun30_auction_print_countjun16_auction_shares_mjun30_auction_shares_mjun30_vs_jun16_xjun16_auction_pctjun30_auction_pct
SPY111.8421.12.73.6
AAPL117.4921.712.918.833.2
NVDA1123.4741.141.818.524.7
the exact SQL behind every number
SELECT
    ticker,
    countIf(has(conditions, 8) AND sip_timestamp < '2026-06-17 00:00:00') AS jun16_auction_print_count,
    countIf(has(conditions, 8) AND sip_timestamp >= '2026-06-30 00:00:00') AS jun30_auction_print_count,
    round(toFloat64(maxIf(size, has(conditions, 8) AND sip_timestamp < '2026-06-17 00:00:00')) / 1e6, 2) AS jun16_auction_shares_m,
    round(toFloat64(maxIf(size, has(conditions, 8) AND sip_timestamp >= '2026-06-30 00:00:00')) / 1e6, 2) AS jun30_auction_shares_m,
    round(toFloat64(maxIf(size, has(conditions, 8) AND sip_timestamp >= '2026-06-30 00:00:00')) / toFloat64(maxIf(size, has(conditions, 8) AND sip_timestamp < '2026-06-17 00:00:00')), 1) AS jun30_vs_jun16_x,
    round(100 * toFloat64(maxIf(size, has(conditions, 8) AND sip_timestamp < '2026-06-17 00:00:00')) / toFloat64(sumIf(size, NOT hasAny(conditions, [15, 16, 38]) AND sip_timestamp < '2026-06-17 00:00:00')), 1) AS jun16_auction_pct,
    round(100 * toFloat64(maxIf(size, has(conditions, 8) AND sip_timestamp >= '2026-06-30 00:00:00')) / toFloat64(sumIf(size, NOT hasAny(conditions, [15, 16, 38]) AND sip_timestamp >= '2026-06-30 00:00:00')), 1) AS jun30_auction_pct
FROM global_markets.stocks_trades
WHERE ticker IN ('SPY', 'AAPL', 'NVDA')
  AND ((sip_timestamp >= '2026-06-16 00:00:00' AND sip_timestamp < '2026-06-17 00:00:00')
    OR (sip_timestamp >= '2026-06-30 00:00:00' AND sip_timestamp < '2026-07-01 00:00:00'))
GROUP BY ticker
ORDER BY indexOf(['SPY', 'AAPL', 'NVDA'], ticker)
$