STRASMORE/EXPLORE 2,170 QUERIES

Options session by session: contracts, the call/put split, and the put/call ratio

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-27, from SPCX: SpaceX's First Month on the Public Market.

as of series 10×7read in context →
Options session by session: contracts, the call/put split, and the put/call ratio — 10 rows by 7 columns, computed from US exchange, SIP and OPRA data.
sessionprintscontracts_tradedcall_contractsput_contractsput_call_ratiopct_of_busiest_session
2026-06-1642211616909519448127461390.7991.7
2026-06-1733428913774416931346843070.9974.7
2026-06-1835284018444909807538637370.88100
2026-06-2224918511859646336615523030.8764.3
2026-06-232052469932445285424647020.8853.8
2026-06-241162096128203603712524490.733.2
2026-06-25920134860822698772162050.826.4
2026-06-2615215610010666124923885740.6354.3
2026-06-291215365867544013761853780.4631.8
2026-06-301350816179113891882287230.5933.5
Rows × columns
10 × 7
Period covered
to
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 session by session: contracts, the call/put split, and the put/call ratio, derived from the stored result.
ColumnTypeRangeNotes
session date 2026-06-16 to 2026-06-30
prints number 92,013 to 422,116
contracts_traded number 486,082 to 1,844,490 count
call_contracts number 269,877 to 980,753 count
put_contracts number 185,378 to 863,737 count
put_call_ratio number 0.46 to 0.99 ratio or rate
pct_of_busiest_session number 26.4 to 100 percent

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
SELECT
    toDate(sip_timestamp) AS session,
    count() AS prints,
    toUInt64(sum(size)) AS contracts_traded,
    toUInt64(sumIf(size, substring(ticker, 13, 1) = 'C')) AS call_contracts,
    toUInt64(sumIf(size, substring(ticker, 13, 1) = 'P')) AS put_contracts,
    round(toFloat64(sumIf(size, substring(ticker, 13, 1) = 'P')) / toFloat64(sumIf(size, substring(ticker, 13, 1) = 'C')), 2) AS put_call_ratio,
    round(100 * toFloat64(sum(size)) / max(toFloat64(sum(size))) OVER (), 1) AS pct_of_busiest_session
FROM global_markets.options_trades
WHERE startsWith(ticker, 'O:SPCX') AND length(ticker) = 21
  AND sip_timestamp >= toDateTime64('2026-06-12 00:00:00', 9) AND sip_timestamp < toDateTime64('2026-07-01 00:00:00', 9)
GROUP BY session
ORDER BY session

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 analysisSPCX: SpaceX's First Month on the Public Market
Symbol-reuse receipt: thirteen months of SPCX minute bars, May 2026 is absent entirely series 12×5 The seasoning curve: regular-hours spread by session, per-update and time-weighted series 12×8 FINRA off-exchange short volume by session: marked-short share and reported volume series 12×4 The sessions: regular-hours close, close-over-close change, full-day volume series 12×5 What it cost to trade the busiest contract: NBBO spread over its three sessions series 3×6 Where the contracts landed: call and put volume by strike bucket table 19×5 See all 2,170 queries →