STRASMORE/EXPLORE 2,170 QUERIES

Options tape: prints, contracts, call %, 0DTE share vs Wednesday, top contracts

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: July 9, 2026, The Day in Numbers.

as of scalar 1×22read in context →
option prints m
9.99
contracts m
58.85
jul8 contracts m
63.26
call pct of volume
58
pct 0dte
28.7
jul8 pct 0dte
38.7
spy regular close
751.64
top1 und
SPY
top1 strike
751
top1 type
C
top1 contracts k
846.6
top1 avg px
0.526
top1 is 0dte
1
top2 und
SPY
top2 strike
752
top2 type
C
top2 is 0dte
1
top3 und
SPY
top3 strike
750
top3 type
C
top3 is 0dte
1
top1 moneyness
-0.64
Rows × columns
1 × 22
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 Options tape: prints, contracts, call %, 0DTE share vs Wednesday, top contracts, derived from the stored result.
ColumnTypeRangeNotes
option_prints_m number every row is 9.99
contracts_m number every row is 58.85 count
jul8_contracts_m number every row is 63.26 count
call_pct_of_volume number every row is 58 percent
pct_0dte number every row is 28.7 percent
jul8_pct_0dte number every row is 38.7 percent
spy_regular_close number every row is 751.64 US dollars
top1_und text 1 distinct value (SPY)
top1_strike number every row is 751 US dollars
top1_type text 1 distinct value (C)
top1_contracts_k number every row is 846.6 count
top1_avg_px number every row is 0.526
top1_is_0dte number every row is 1
top2_und text 1 distinct value (SPY)
top2_strike number every row is 752 US dollars
top2_type text 1 distinct value (C)
top2_is_0dte number every row is 1
top3_und text 1 distinct value (SPY)
top3_strike number every row is 750 US dollars
top3_type text 1 distinct value (C)
top3_is_0dte number every row is 1
top1_moneyness number every row is -0.64

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 (groupArray(und), groupArray(strike), groupArray(typ), groupArray(vol), groupArray(avg_px), groupArray(is_0dte))
        FROM (
            SELECT any(underlying_symbol) AS und, any(toFloat64(strike_price)) AS strike, any(option_type) AS typ,
                   sum(size) AS vol, round(avg(toFloat64(price)), 3) AS avg_px,
                   if(substring(ticker, length(ticker) - 14, 6) = '260709', 1, 0) AS is_0dte
            FROM global_markets.options_trades
            WHERE sip_timestamp >= '2026-07-09 00:00:00' AND sip_timestamp < '2026-07-10 00:00:00'
            GROUP BY ticker
            ORDER BY vol DESC
            LIMIT 3
        )
    ) AS top3,
    (
        SELECT round(toFloat64(argMax(close, window_start)), 2)
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker = 'SPY' AND window_start >= '2026-07-09 13:30:00' AND window_start < '2026-07-09 20:00:00'
    ) AS spy_regular_close,
    (
        SELECT round(toFloat64(sum(size)) / 1e6, 2)
        FROM global_markets.options_trades
        WHERE sip_timestamp >= '2026-07-08 00:00:00' AND sip_timestamp < '2026-07-09 00:00:00'
    ) AS jul8_contracts_m,
    (
        SELECT round(100.0 * sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260708') / sum(size), 1)
        FROM global_markets.options_trades
        WHERE sip_timestamp >= '2026-07-08 00:00:00' AND sip_timestamp < '2026-07-09 00:00:00'
    ) AS jul8_pct_0dte
SELECT
    round(count() / 1e6, 2) AS option_prints_m,
    round(toFloat64(sum(size)) / 1e6, 2) AS contracts_m,
    jul8_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) = '260709') / sum(size), 1) AS pct_0dte,
    jul8_pct_0dte,
    spy_regular_close,
    top3.1[1] AS top1_und, top3.2[1] AS top1_strike, top3.3[1] AS top1_type,
    round(toFloat64(top3.4[1]) / 1e3, 1) AS top1_contracts_k, top3.5[1] AS top1_avg_px, top3.6[1] AS top1_is_0dte,
    top3.1[2] AS top2_und, top3.2[2] AS top2_strike, top3.3[2] AS top2_type, top3.6[2] AS top2_is_0dte,
    top3.1[3] AS top3_und, top3.2[3] AS top3_strike, top3.3[3] AS top3_type, top3.6[3] AS top3_is_0dte,
    round(toFloat64(top3.2[1]) - spy_regular_close, 2) AS top1_moneyness
FROM global_markets.options_trades
WHERE sip_timestamp >= '2026-07-09 00:00:00' AND sip_timestamp < '2026-07-10 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: July 9, 2026, The Day in Numbers
Session verification: first/last SPY bar ET, regular-bar count, holiday receipts, next closure scalar 1×9 On deck: the next session, its ex-dividend slate, the SPY expiry ladder, and the short-interest clock scalar 1×8 Ex-divs, splits, SEC filings, news attention scalar 1×14 Treasury print status: July 9 rows on record, and the July 8 curve (latest at authoring) scalar 1×6 SPY / QQQ day move in trailing context (~22 sessions) scalar 1×7 SPY's RTH average quoted spread in trailing-month context scalar 1×6 See all 2,170 queries →