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-26, from NVDA: NVIDIA's Full June 2026, Tick by Tick.

as of series 21×7read in context →
Options session by session: contracts, the call/put split, and the put/call ratio — 21 rows by 7 columns, computed from US exchange, SIP and OPRA data.
sessionprintscontracts_tradedcall_contractsput_contractsput_call_ratiopct_of_busiest_session
2026-06-016315654455405318314012722650.484.1
2026-06-02568652355149726643558871420.3367
2026-06-03418199320178722964739053140.3960.4
2026-06-044763043267233226105610061770.4561.7
2026-06-056096035298529327772320208060.62100
2026-06-084495373194748201529111794570.5960.3
2026-06-094510943079719189390111858180.6358.1
2026-06-104158162997532168180513157270.7856.6
2026-06-11359377242793215127009152320.6145.8
2026-06-123717252859048177762510814230.6154
2026-06-154669833400120226936911307510.564.2
2026-06-16263398177935510928146865410.6333.6
2026-06-173417592779717167654811031690.6652.5
2026-06-184104103498315225631312420020.5566
2026-06-22391027284263819273609152780.4753.6
2026-06-23329417213042512673548630710.6840.2
2026-06-244165463452333198498514673480.7465.2
2026-06-253974512661094161014510509490.6550.2
2026-06-264256992994426178794512064810.6756.5
2026-06-29366976271056417380759724890.5651.2
2026-06-30341071205283814055046473340.4638.7
Rows × columns
21 × 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-01 to 2026-06-30
prints number 263,398 to 631,565
contracts_traded number 1,779,355 to 5,298,529 count
call_contracts number 1,092,814 to 3,277,723 count
put_contracts number 647,334 to 2,020,806 count
put_call_ratio number 0.33 to 0.78 ratio or rate
pct_of_busiest_session number 33.6 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:NVDA') AND length(ticker) = 21
  AND sip_timestamp >= toDateTime64('2026-06-01 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 analysisNVDA: NVIDIA's Full June 2026, Tick by Tick
The spread by session: regular-hours median and time-weighted average (bps) series 21×5 The 21 sessions: regular-hours close, close-over-close change, full-day volume series 21×5 FINRA off-exchange short volume by session: marked-short share and reported volume series 20×4 Where the contracts landed: call and put volume by strike bucket table 19×5 The whole US tape ranked by June 2026 regular-hours dollar volume ranking 12×4 The trailing six months, recomputed live: turnover, shares, and month return ranking 6×4 See all 2,170 queries →