STRASMORE/EXPLORE 2,170 QUERIES

GME options volume by week: calls vs. puts and total premium, January 2021

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-08-22, from What Is a Short Squeeze? GameStop, Measured.

as of table 5×5read in context →
GME options volume by week: calls vs. puts and total premium, January 2021 — 5 rows by 5 columns, computed from US exchange, SIP and OPRA data.
week_ofcall_contracts_mput_contracts_mcall_share_pctpremium_bn
2021-01-030.270.1366.60.06
2021-01-101.530.9362.10.9
2021-01-171.741.7449.91.91
2021-01-242.073.9734.323.54
2021-01-311.32.64336.7
Rows × columns
5 × 5
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 GME options volume by week: calls vs. puts and total premium, January 2021, derived from the stored result.
ColumnTypeRangeNotes
week_of date 2021-01-03 to 2021-01-31
call_contracts_m number 0.27 to 2.07 count
put_contracts_m number 0.13 to 3.97 count
call_share_pct number 33 to 66.6 percent
premium_bn number 0.06 to 23.54 US dollars

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(toStartOfWeek(toDate(toTimeZone(sip_timestamp, 'America/New_York')))) AS week_of,
       round(sumIf(size, substring(ticker, 12, 1) = 'C') / 1e6, 2) AS call_contracts_m,
       round(sumIf(size, substring(ticker, 12, 1) = 'P') / 1e6, 2) AS put_contracts_m,
       round(100.0 * sumIf(size, substring(ticker, 12, 1) = 'C') / sum(size), 1) AS call_share_pct,
       round(sum(toFloat64(price) * size * 100) / 1e9, 2) AS premium_bn
FROM global_markets.options_trades
WHERE ticker >= 'O:GME21' AND ticker < 'O:GME24'
  AND sip_timestamp >= toDateTime('2021-01-04 00:00:00')
  AND sip_timestamp < toDateTime('2021-02-06 00:00:00')
GROUP BY week_of
ORDER BY week_of

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 analysisWhat Is a Short Squeeze? GameStop, Measured
Highest days to cover among liquid names: latest settlement on file table 10×5 GME weekly price range and shares traded, January through mid-February 2021 (as-traded prices) table 7×5 Four January 2021 squeezes: price multiple and short interest before and after (as-traded prices) table 4×6 GME short interest by settlement date, November 2020 through March 2021 ranking 10×3 GME 2021, one row: January low, late-January peak, February trough, March rebound (as-traded prices) scalar 1×7 Days to cover across liquid names: every ticker averaging 5M+ shares/day, latest settlement on file scalar 1×6 See all 2,170 queries →