Six household names at the latest settlement: shares short, percent of shares outstanding, days to cover
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 FINRA Short Interest? Days to Cover.
| ticker | shares_short_m | shares_outstanding_m | shares_outstanding_m_fmt | short_pct_of_shares_out | days_to_cover |
|---|---|---|---|---|---|
| AAPL | 141.6 | 14748 | 14,748 | 0.96 | 2.42 |
| KO | 44.8 | 4303 | 4,303 | 1.04 | 2.39 |
| MSFT | 81.3 | 7431 | 7,431 | 1.09 | 2.03 |
| NVDA | 292.7 | 24286 | 24,286 | 1.21 | 2.3 |
| TSLA | 68.5 | 3225 | 3,225 | 2.12 | 1.55 |
| GME | 53.7 | 448 | 448 | 12 | 17.06 |
- Rows × columns
- 6 × 6
- 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 |
|---|---|---|---|
ticker |
text | 6 distinct values (AAPL, GME, KO…) | |
shares_short_m |
number | 44.8 to 292.7 | count |
shares_outstanding_m |
number | 448 to 24,286 | count |
shares_outstanding_m_fmt |
text | 6 distinct values (14,748, 24,286, 3,225…) | |
short_pct_of_shares_out |
number | 0.96 to 12 | percent |
days_to_cover |
number | 1.55 to 17.06 |
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 (SELECT max(settlement_date) FROM global_markets.stocks_short_interest) AS latest,
shares AS
(
SELECT tk AS ticker,
argMax(basic_shares_outstanding, (filing_date, period_end)) AS shares_out
FROM global_markets.stocks_income_statements
ARRAY JOIN tickers AS tk
WHERE tk IN ('AAPL', 'KO', 'MSFT', 'NVDA', 'TSLA', 'GME')
AND timeframe = 'quarterly'
AND filing_date >= today() - INTERVAL 1 YEAR
AND basic_shares_outstanding > 0
GROUP BY tk
),
si AS
(
SELECT ticker,
max(short_interest) AS shares_short,
max(days_to_cover) AS dtc
FROM global_markets.stocks_short_interest
WHERE settlement_date = latest
AND ticker IN ('AAPL', 'KO', 'MSFT', 'NVDA', 'TSLA', 'GME')
GROUP BY ticker
)
SELECT si.ticker AS ticker,
round(si.shares_short / 1e6, 1) AS shares_short_m,
round(shares.shares_out / 1e6, 0) AS shares_outstanding_m,
multiIf(shares.shares_out < 1e9, toString(toUInt64(round(shares.shares_out / 1e6, 0))),
concat(toString(intDiv(toUInt64(round(shares.shares_out / 1e6, 0)), 1000)), ',',
lpad(toString(toUInt64(round(shares.shares_out / 1e6, 0)) % 1000), 3, '0'))) AS shares_outstanding_m_fmt,
round(100.0 * si.shares_short / shares.shares_out, 2) AS short_pct_of_shares_out,
round(si.dtc, 2) AS days_to_cover
FROM si
INNER JOIN shares ON si.ticker = shares.ticker
ORDER BY indexOf(['AAPL', 'KO', 'MSFT', 'NVDA', 'TSLA', 'GME'], si.ticker)
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 FINRA Short Interest? Days to Cover
TSLA short interest vs. average daily volume, bi-monthly (last 2 years)
series 47×3
→
GameStop, Nov 2020 – Mar 2021: short interest, days to cover and the closing price at each settlement
series 10×4
→
Short interest reporting dates: recent settlements, weekday, coverage and publication lag
series 9×5
→
How liquid US stocks distribute by short interest as a percent of shares outstanding
ranking 5×4
→
The latest FINRA short interest file: one snapshot of the whole market
scalar 1×4
→
Days to cover across all liquid US tickers, latest settlement (min 1M shares/day)
scalar 1×6
→
See all 2,170 queries →