STRASMORE/EXPLORE 2,170 QUERIES

One row for the whole options day: volume, same-day expiry, SPY's put/call skew by moneyness, the holiday-shifted week

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-07-26, from Market Recap: June 30, 2026, The Day in Numbers.

as of scalar 1×20read in context →
option prints m
10.06
contracts m
61.95
call pct of volume
57.3
same day expiry pct
28
thu jul2 expiry contracts m
10.52
fri jul3 expiry prints
0
spy contracts m
12.04
qqq contracts m
7.1
spy put call ratio
1.09
spy 0dte otm calls m
2.28
spy 0dte itm calls m
1.77
spy 0dte otm puts m
3.33
spy 0dte itm puts m
0.63
top contract underlying
SPY
top contract strike
747
top contract type
C
top contract expiry
2026-06-30
top contract volume
821,361
top contract avg price
0.641
top strike minus spy close
0.68
Rows × columns
1 × 20
Period covered
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 One row for the whole options day: volume, same-day expiry, SPY's put/call skew by moneyness, the holiday-shifted week, derived from the stored result.
ColumnTypeRangeNotes
option_prints_m number every row is 10.06
contracts_m number every row is 61.95 count
call_pct_of_volume number every row is 57.3 percent
same_day_expiry_pct number every row is 28 percent
thu_jul2_expiry_contracts_m number every row is 10.52 count
fri_jul3_expiry_prints number every row is 0
spy_contracts_m number every row is 12.04 count
qqq_contracts_m number every row is 7.1 count
spy_put_call_ratio number every row is 1.09 ratio or rate
spy_0dte_otm_calls_m number every row is 2.28
spy_0dte_itm_calls_m number every row is 1.77
spy_0dte_otm_puts_m number every row is 3.33
spy_0dte_itm_puts_m number every row is 0.63
top_contract_underlying text 1 distinct value (SPY)
top_contract_strike number every row is 747 US dollars
top_contract_type text 1 distinct value (C)
top_contract_expiry date 2026-06-30
top_contract_volume number every row is 821,361 count
top_contract_avg_price number every row is 0.641 US dollars
top_strike_minus_spy_close number every row is 0.68 US dollars

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 (any(underlying_symbol), any(toFloat64(strike_price)), any(option_type),
                any(toDateOrNull(concat('20', substring(ticker, length(ticker) - 14, 6)))),
                sum(size), count(), round(avg(toFloat64(price)), 3))
        FROM global_markets.options_trades
        WHERE sip_timestamp >= '2026-06-30 00:00:00' AND sip_timestamp < '2026-07-01 00:00:00'
        GROUP BY ticker
        ORDER BY sum(size) DESC
        LIMIT 1
    ) AS top_contract,
    (
        SELECT round(toFloat64(argMax(close, window_start)), 2)
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker = 'SPY' AND window_start >= '2026-06-30 13:30:00' AND window_start < '2026-06-30 20:00:00'
    ) AS spy_close
SELECT
    round(count() / 1e6, 2) AS option_prints_m,
    round(toFloat64(sum(size)) / 1e6, 2) AS contracts_m,
    round(100.0 * sumIf(size, option_type = 'C') / sum(size), 1) AS call_pct_of_volume,
    round(100.0 * sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260630') / sum(size), 1) AS same_day_expiry_pct,
    round(toFloat64(sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260702')) / 1e6, 2) AS thu_jul2_expiry_contracts_m,
    countIf(substring(ticker, length(ticker) - 14, 6) = '260703') AS fri_jul3_expiry_prints,
    round(toFloat64(sumIf(size, underlying_symbol = 'SPY')) / 1e6, 2) AS spy_contracts_m,
    round(toFloat64(sumIf(size, underlying_symbol = 'QQQ')) / 1e6, 2) AS qqq_contracts_m,
    round(toFloat64(sumIf(size, underlying_symbol = 'SPY' AND option_type = 'P'))
        / toFloat64(sumIf(size, underlying_symbol = 'SPY' AND option_type = 'C')), 2) AS spy_put_call_ratio,
    round(toFloat64(sumIf(size, underlying_symbol = 'SPY' AND option_type = 'C'
        AND substring(ticker, length(ticker) - 14, 6) = '260630' AND toFloat64(strike_price) > spy_close)) / 1e6, 2) AS spy_0dte_otm_calls_m,
    round(toFloat64(sumIf(size, underlying_symbol = 'SPY' AND option_type = 'C'
        AND substring(ticker, length(ticker) - 14, 6) = '260630' AND toFloat64(strike_price) <= spy_close)) / 1e6, 2) AS spy_0dte_itm_calls_m,
    round(toFloat64(sumIf(size, underlying_symbol = 'SPY' AND option_type = 'P'
        AND substring(ticker, length(ticker) - 14, 6) = '260630' AND toFloat64(strike_price) < spy_close)) / 1e6, 2) AS spy_0dte_otm_puts_m,
    round(toFloat64(sumIf(size, underlying_symbol = 'SPY' AND option_type = 'P'
        AND substring(ticker, length(ticker) - 14, 6) = '260630' AND toFloat64(strike_price) >= spy_close)) / 1e6, 2) AS spy_0dte_itm_puts_m,
    top_contract.1 AS top_contract_underlying,
    top_contract.2 AS top_contract_strike,
    top_contract.3 AS top_contract_type,
    top_contract.4 AS top_contract_expiry,
    top_contract.5 AS top_contract_volume,
    round(top_contract.7, 3) AS top_contract_avg_price,
    round(top_contract.2 - spy_close, 2) AS top_strike_minus_spy_close
FROM global_markets.options_trades
WHERE sip_timestamp >= '2026-06-30 00:00:00' AND sip_timestamp < '2026-07-01 00:00:00'

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 analysisMarket Recap: June 30, 2026, The Day in Numbers
Session check: SPY's observed minute-bar span scalar 1×5 SPY's open-to-close move ranked against the trailing month of sessions (rank 1 = biggest absolute move) scalar 1×4 June 30's corporate calendar and information flow, in one row (the filing-index gap on display) scalar 1×12 Advancers vs decliners among tickers with at least $1M traded on June 30 scalar 1×9 Shares traded per 30-minute bucket, regular hours (billions) series 13×3 Volume leaders two ways: top 6 by dollars traded, top 4 by shares traded (one reused-symbol listing excluded pending entity verification) table 10×6 See all 2,170 queries →