STRASMORE/EXPLORE 2,170 QUERIES

SPY options: puts vs calls traded, March 2–13, 2020 (millions of 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 COVID Crash 2020: Four Halts, Peak to Trough.

as of series 10×4read in context →
SPY options: puts vs calls traded, March 2–13, 2020 (millions of contracts) — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
sessionput_contracts_mcall_contracts_mput_call_ratio
2020-03-023.742.541.47
2020-03-033.142.241.4
2020-03-043.062.271.35
2020-03-053.141.821.73
2020-03-064.642.381.95
2020-03-094.352.381.83
2020-03-103.612.41.5
2020-03-113.752.441.54
2020-03-124.533.431.32
2020-03-134.633.271.41
Rows × columns
10 × 4
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 SPY options: puts vs calls traded, March 2–13, 2020 (millions of contracts), derived from the stored result.
ColumnTypeRangeNotes
session date 2020-03-02 to 2020-03-13
put_contracts_m number 3.06 to 4.64 count
call_contracts_m number 1.82 to 3.43 count
put_call_ratio number 1.32 to 1.95 ratio or rate

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
    toString(toDate(toTimeZone(sip_timestamp, 'America/New_York'))) AS session,
    round(sumIf(toFloat64(size), substring(ticker, 12, 1) = 'P') / 1e6, 2) AS put_contracts_m,
    round(sumIf(toFloat64(size), substring(ticker, 12, 1) = 'C') / 1e6, 2) AS call_contracts_m,
    round(sumIf(toFloat64(size), substring(ticker, 12, 1) = 'P') / sumIf(toFloat64(size), substring(ticker, 12, 1) = 'C'), 2) AS put_call_ratio
FROM global_markets.options_trades
WHERE ticker >= 'O:SPY2' AND ticker < 'O:SPY3'
  AND sip_timestamp >= toDateTime('2020-03-02 00:00:00') AND sip_timestamp < toDateTime('2020-03-14 00:00:00')
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 analysisCOVID Crash 2020: Four Halts, Peak to Trough
10-year and 3-month Treasury yields through the crash, daily closes series 31×3 SPY by half-hour: March 9, 2020 regular session series 13×4 The four circuit-breaker sessions of March 2020: SPY close, change, volume series 4×4 March 9 and full-crash moves: cruise, airline, energy, bank, tech, staples vs SPY ranking 7×3 SPY on March 9, 2020: the circuit-breaker session, receipted scalar 1×11 The COVID crash, peak to trough to recovery: SPY daily closes, one row scalar 1×11 See all 2,170 queries →