Days to cover across liquid names: every ticker averaging 5M+ shares/day, latest settlement on file
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.
settled
2026-07-31
liquid names
721
median days to cover
2.1
p90 days to cover
5.5
max days to cover
14.5
names at 10 plus
3
- Rows × columns
- 1 × 6
- Period covered
- 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 |
|---|---|---|---|
settled |
date | 2026-07-31 | |
liquid_names |
number | every row is 721 | |
median_days_to_cover |
number | every row is 2.1 | |
p90_days_to_cover |
number | every row is 5.5 | |
max_days_to_cover |
number | every row is 14.5 | |
names_at_10_plus |
number | every row is 3 |
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(max(settlement_date)) AS settled,
count() AS liquid_names,
round(quantileDeterministic(0.5)(days_to_cover, cityHash64(ticker)), 1) AS median_days_to_cover,
round(quantileDeterministic(0.9)(days_to_cover, cityHash64(ticker)), 1) AS p90_days_to_cover,
round(max(days_to_cover), 1) AS max_days_to_cover,
countIf(days_to_cover >= 10) AS names_at_10_plus
FROM global_markets.stocks_short_interest
WHERE settlement_date = (SELECT max(settlement_date) FROM global_markets.stocks_short_interest)
AND avg_daily_volume >= 5000000
AND days_to_cover IS NOT NULL
AND ticker NOT IN ('SPCX')
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
GME 2021, one row: January low, late-January peak, February trough, March rebound (as-traded prices)
scalar 1×7
→
GME short interest by settlement date, November 2020 through March 2021
ranking 10×3
→
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
→
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
→
See all 2,170 queries →