STRASMORE/EXPLORE 2,170 QUERIES

GME weekly price range and shares traded, January through mid-February 2021 (as-traded prices)

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 7×5read in context →
GME weekly price range and shares traded, January through mid-February 2021 (as-traded prices) — 7 rows by 5 columns, computed from US exchange, SIP and OPRA data.
week_ofweek_lowweek_highweek_closeshares_traded_m
2021-01-0317.0619.4517.9733
2021-01-1017.0543.5735.9306
2021-01-1736.0676.7663.7361
2021-01-2461.13513.12315.72558
2021-01-3149384.8967.2301
2021-02-0746.5275.852.6116
2021-02-1438.554.242.7156
Rows × columns
7 × 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 weekly price range and shares traded, January through mid-February 2021 (as-traded prices), derived from the stored result.
ColumnTypeRangeNotes
week_of date 2021-01-03 to 2021-02-14
week_low number 17.05 to 61.13 US dollars
week_high number 19.45 to 513.12 US dollars
week_close number 17.97 to 315.72 US dollars
shares_traded_m number 33 to 558 count

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(day)) AS week_of,
       round(min(lo), 2) AS week_low,
       round(max(hi), 2) AS week_high,
       round(argMax(cl, day), 2) AS week_close,
       round(sum(vol) / 1e6, 0) AS shares_traded_m
FROM (
    SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS day,
           min(toFloat64(low)) AS lo,
           max(toFloat64(high)) AS hi,
           argMax(toFloat64(close), window_start) AS cl,
           sum(toFloat64(volume)) AS vol
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'GME'
      AND window_start >= '2021-01-04 04:00:00'
      AND window_start < '2021-02-20 04:00:00'
    GROUP BY day
)
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 options volume by week: calls vs. puts and total premium, January 2021 table 5×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 →