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.
| week_of | call_contracts_m | put_contracts_m | call_share_pct | premium_bn |
|---|---|---|---|---|
| 2021-01-03 | 0.27 | 0.13 | 66.6 | 0.06 |
| 2021-01-10 | 1.53 | 0.93 | 62.1 | 0.9 |
| 2021-01-17 | 1.74 | 1.74 | 49.9 | 1.91 |
| 2021-01-24 | 2.07 | 3.97 | 34.3 | 23.54 |
| 2021-01-31 | 1.3 | 2.64 | 33 | 6.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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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 →