STRASMORE/EXPLORE 2,170 QUERIES

Options tape: contracts, call %, 0DTE share vs Thursday, top contract, Friday expiry day

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 10, 2026, The Day in Numbers.

as of scalar 1×14read in context →
option prints m
10.56
contracts m
65.59
jul9 contracts m
58.85
call pct of volume
59.4
pct 0dte
48.7
jul9 pct 0dte
28.7
spy regular close
754.9
top1 und
SPY
top1 strike
755
top1 type
C
top1 contracts
1.01M
top1 avg px
0.262
top1 is 0dte
1
top1 moneyness
0.1
Rows × columns
1 × 14
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: contracts, call %, 0DTE share vs Thursday, top contract, Friday expiry day, derived from the stored result.
ColumnTypeRangeNotes
option_prints_m number every row is 10.56
contracts_m number every row is 65.59 count
jul9_contracts_m number every row is 58.85 count
call_pct_of_volume number every row is 59.4 percent
pct_0dte number every row is 48.7 percent
jul9_pct_0dte number every row is 28.7 percent
spy_regular_close number every row is 754.9 US dollars
top1_und text 1 distinct value (SPY)
top1_strike number every row is 755 US dollars
top1_type text 1 distinct value (C)
top1_contracts number every row is 1,005,279 count
top1_avg_px number every row is 0.262
top1_is_0dte number every row is 1
top1_moneyness number every row is 0.1

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) = '260710', 1, 0) AS is_0dte
            FROM global_markets.options_trades
            WHERE sip_timestamp >= '2026-07-10 00:00:00' AND sip_timestamp < '2026-07-11 00:00:00'
            GROUP BY ticker
            ORDER BY vol DESC
            LIMIT 2
        )
    ) AS top2,
    (
        SELECT round(toFloat64(argMax(close, window_start)), 2)
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker = 'SPY' AND window_start >= '2026-07-10 13:30:00' AND window_start < '2026-07-10 20:00:00'
    ) AS spy_regular_close,
    (
        SELECT round(toFloat64(sum(size)) / 1e6, 2)
        FROM global_markets.options_trades
        WHERE sip_timestamp >= '2026-07-09 00:00:00' AND sip_timestamp < '2026-07-10 00:00:00'
    ) AS jul9_contracts_m,
    (
        SELECT round(100.0 * sumIf(size, substring(ticker, length(ticker) - 14, 6) = '260709') / sum(size), 1)
        FROM global_markets.options_trades
        WHERE sip_timestamp >= '2026-07-09 00:00:00' AND sip_timestamp < '2026-07-10 00:00:00'
    ) AS jul9_pct_0dte
SELECT
    round(count() / 1e6, 2) AS option_prints_m,
    round(toFloat64(sum(size)) / 1e6, 2) AS contracts_m,
    jul9_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) = '260710') / sum(size), 1) AS pct_0dte,
    jul9_pct_0dte,
    spy_regular_close,
    top2.1[1] AS top1_und, top2.2[1] AS top1_strike, top2.3[1] AS top1_type, top2.4[1] AS top1_contracts, top2.5[1] AS top1_avg_px, top2.6[1] AS top1_is_0dte,
    round(toFloat64(top2.2[1]) - spy_regular_close, 2) AS top1_moneyness
FROM global_markets.options_trades
WHERE sip_timestamp >= '2026-07-10 00:00:00' AND sip_timestamp < '2026-07-11 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 10, 2026, The Day in Numbers
SK Hynix's first session: the listing record vs the tape, July 10, 2026 scalar 1×8 Session verification: first/last SPY bar ET, regular-bar count, holiday receipts, next closure scalar 1×7 The week of July 13–17: closures, ex-dividends, splits, the monthly expiry, and the short-interest lag scalar 1×8 Ex-divs, splits, news, and the July 10 SEC filing mix scalar 1×16 Treasury print status: July 9 and July 10 rows on record, and the July 8 curve (latest at authoring) scalar 1×6 SPY day move in trailing context (~22 sessions, open-to-close) scalar 1×4 See all 2,170 queries →