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.
| session | prints | contracts_traded | call_contracts | put_contracts | put_call_ratio | pct_of_busiest_session |
|---|---|---|---|---|---|---|
| 2026-06-16 | 422116 | 1690951 | 944812 | 746139 | 0.79 | 91.7 |
| 2026-06-17 | 334289 | 1377441 | 693134 | 684307 | 0.99 | 74.7 |
| 2026-06-18 | 352840 | 1844490 | 980753 | 863737 | 0.88 | 100 |
| 2026-06-22 | 249185 | 1185964 | 633661 | 552303 | 0.87 | 64.3 |
| 2026-06-23 | 205246 | 993244 | 528542 | 464702 | 0.88 | 53.8 |
| 2026-06-24 | 116209 | 612820 | 360371 | 252449 | 0.7 | 33.2 |
| 2026-06-25 | 92013 | 486082 | 269877 | 216205 | 0.8 | 26.4 |
| 2026-06-26 | 152156 | 1001066 | 612492 | 388574 | 0.63 | 54.3 |
| 2026-06-29 | 121536 | 586754 | 401376 | 185378 | 0.46 | 31.8 |
| 2026-06-30 | 135081 | 617911 | 389188 | 228723 | 0.59 | 33.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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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 →