STRASMORE/EXPLORE 2,170 QUERIES

Today's top-3 crowding leaders, traced back eight settlements

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-25, from Most Shorted Stocks Right Now, Measured.

as of series 8×4read in context →
Today's top-3 crowding leaders, traced back eight settlements — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
settlement_datecurrent_leader_dtcsecond_place_dtcthird_place_dtc
2026-04-159.518.18.4
2026-04-3010.67.85.7
2026-05-1510.67.312.5
2026-05-297.612.58.5
2026-06-151214.413.4
2026-06-308.711.59.5
2026-07-1511.99.211
2026-07-3114.510.810.4
Rows × columns
8 × 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 Today's top-3 crowding leaders, traced back eight settlements, derived from the stored result.
ColumnTypeRangeNotes
settlement_date date 2026-04-15 to 2026-07-31
current_leader_dtc number 7.6 to 14.5
second_place_dtc number 7.3 to 18.1
third_place_dtc number 5.7 to 13.4

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
WITH dates AS (
    SELECT DISTINCT settlement_date AS d
    FROM global_markets.stocks_short_interest
    ORDER BY d DESC
    LIMIT 8
),
top3 AS (
    SELECT ticker, row_number() OVER (ORDER BY days_to_cover DESC, ticker) AS rank
    FROM global_markets.stocks_short_interest
    WHERE settlement_date = (SELECT max(d) FROM dates)
      AND avg_daily_volume >= 5000000
      AND days_to_cover IS NOT NULL
      AND ticker NOT IN ('SPCX')
    ORDER BY days_to_cover DESC, ticker
    LIMIT 3
)
SELECT toString(settlement_date) AS settlement_date,
       maxIf(round(days_to_cover, 1), ticker = (SELECT ticker FROM top3 WHERE rank = 1)) AS current_leader_dtc,
       maxIf(round(days_to_cover, 1), ticker = (SELECT ticker FROM top3 WHERE rank = 2)) AS second_place_dtc,
       maxIf(round(days_to_cover, 1), ticker = (SELECT ticker FROM top3 WHERE rank = 3)) AS third_place_dtc
FROM global_markets.stocks_short_interest
WHERE ticker IN (SELECT ticker FROM top3)
  AND settlement_date IN (SELECT d FROM dates)
GROUP BY settlement_date
ORDER BY settlement_date

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 analysisMost Shorted Stocks Right Now, Measured
GME through the January 2021 squeeze: the same three columns, settlement by settlement series 10×4 Crowding leaders vs. their own price: about one month of sessions series 4×5 Largest short positions by shares: latest settlement, liquid names ranking 10×4 Highest days to cover among liquid names: latest settlement on file table 10×5 Biggest days-to-cover increases, latest settlement vs. the prior print ranking 8×4 The receipts: universe size, filter bite, median crowding, and list churn at the latest print scalar 1×5 See all 2,170 queries →