Short Interest vs. Short Volume: What Each One Measures
Short interest and daily short volume measure different things. See real per-ticker numbers, days-to-cover math, and the exact query behind every figure.
Short volume vs. short interest is one of the most common points of confusion in short-selling research, and the two are genuinely different measurements. Short interest is a snapshot of how many shares are sold short and not yet bought back — an outstanding balance, reported twice a month. Short volume is a flow — the number of shares sold short during a single trading day, published daily. This post separates the two on real data for one household ticker: Apple.
What Is Short Interest?
Short interest is the total number of a stock's shares that have been sold short and remain open. A short sale means borrowing shares, selling them, and aiming to buy them back later at a lower price. Until that buy-back (the "cover") happens, the position stays open — and every open short position at every broker adds to the stock's short interest.
Brokerage firms report these open positions to FINRA, the securities industry's self-regulatory body, twice a month. Each report is keyed to a settlement date — one near the middle of the month, one at month-end. Here is Apple's short interest at every settlement date over the last two years, next to the average daily volume published with each report:
The exact SQL behind every number
SELECT settlement_date,
round(short_interest / 1e6, 1) AS short_interest_m_shares,
round(avg_daily_volume / 1e6, 1) AS avg_daily_volume_m_shares
FROM global_markets.stocks_short_interest
WHERE ticker = 'AAPL'
AND settlement_date >= today() - INTERVAL 2 YEAR
ORDER BY settlement_dateAs of the 2026-06-15 settlement date, 144.2 million AAPL shares were sold short, against an average daily volume of 52.3 million shares. At the first settlement date in the window, the figure was 135.4 million. One reading per settlement date and nothing in between — open the table and count: two rows per month, not one per day.
How Often Is Short Interest Reported — and How Fresh Is It?
FINRA's cycle produced 47 settlement dates in the two-year window above — two per month. Firms file their positions a few business days after each settlement date, and the compiled totals are published roughly a week after that. The practical consequence: on the day a "new" short interest number appears, it describes positioning that is already one to two weeks old.
Days to Cover: The Short Interest Ratio in Plain English
Days to cover — also called the short interest ratio — divides short interest by average daily trading volume. It answers one question: at the stock's normal pace of trading, how many full sessions of volume would it take for every short seller to buy back? Using Apple's latest print: 144.2 million shorted shares divided by 52.3 million shares of typical daily volume gives about 2.76 days to cover.
The exact SQL behind every number
SELECT settlement_date,
round(days_to_cover, 2) AS days_to_cover,
round(max(days_to_cover) OVER (), 2) AS two_year_peak
FROM global_markets.stocks_short_interest
WHERE ticker = 'AAPL'
AND settlement_date >= today() - INTERVAL 2 YEAR
ORDER BY settlement_dateThe flat reference line marks the window's peak: 3.94 days, the most crowded print in two years — still under a full trading week of volume. That is the typical mega-cap pattern: a large absolute short interest sitting on top of even larger daily liquidity. There is no official "good" number: a couple of sessions reads as routine, while a ratio stretching toward two trading weeks marks a short crowd that could not exit quickly.
What Is Short Volume? A Daily Flow, Not a Snapshot
Short volume comes from a different FINRA publication: the daily short sale volume files. Each trading day, they record how much of the day's reported volume was marked short at the moment of sale. The short volume ratio divides that short-marked volume by the day's total reported volume. The files cover trading reported to FINRA's facilities, so the ratio describes that reported slice, not every share traded on an exchange.
Here is the crucial difference: a trader who shorts a stock at 10am and buys it back at 2pm adds to that day's short volume and leaves short interest untouched. Short volume is gross activity, with no netting for buy-backs. A large slice of it comes from market makers, who mark a sale short whenever they fill a customer buy order with shares they do not yet hold (see how market makers make money for that mechanic).
The exact SQL behind every number
SELECT date,
round(max(short_volume_ratio), 1) AS short_volume_pct
FROM global_markets.stocks_short_volume
WHERE ticker = 'AAPL'
AND date >= today() - INTERVAL 60 DAY
GROUP BY date
ORDER BY dateAcross the 37 sessions in this window, the series is noisy — the three most recent readings came in at 44.2%, 38.1%, and 46.5% of daily volume. A large fraction of Apple's trading is routinely short-marked, in a stock whose entire open short interest equals only about 2.76 days of volume. The two metrics are plainly counting different things.
Short Volume vs. Short Interest: One Ticker, Both Datasets
The simplest way to keep the two apart is an accounting analogy. Short interest is a level — the balance of open short positions at a point in time, like a bank account balance. Short volume is a flow — the day's gross short-selling activity, like the day's deposits. You cannot add up daily short volume to arrive at short interest — the withdrawals (the buy-to-covers) are missing from the file.
The reporting cadence makes the same point visually — counting data points for AAPL over an identical 60-day stretch:
The exact SQL behind every number
SELECT dataset, data_points
FROM
(
SELECT 'Short interest (bi-monthly snapshot)' AS dataset,
count(DISTINCT settlement_date) AS data_points
FROM global_markets.stocks_short_interest
WHERE ticker = 'AAPL'
AND settlement_date >= today() - INTERVAL 60 DAY
UNION ALL
SELECT 'Short volume (daily flow)' AS dataset,
count(DISTINCT date) AS data_points
FROM global_markets.stocks_short_volume
WHERE ticker = 'AAPL'
AND date >= today() - INTERVAL 60 DAY
)
ORDER BY data_points ASCSame ticker, same window: 3 short interest prints versus 37 daily short volume readings. To summarize the contrast:
- Short interest counts open short positions outstanding. A level. Twice-monthly settlement dates, published with a lag.
- Short volume counts shares sold short that day. A flow. Every trading day, gross activity with no netting.
- An intraday round-trip short shows up in short volume and never appears in short interest.
- A months-old short position sits in short interest every period while adding nothing to today's short volume.
Short Percent of Float — and Can It Top 100%?
Short percent of float divides short interest by the float — the shares realistically available for public trading (shares outstanding minus insider stakes and other locked-up holdings). By convention, single-digit percentages are unremarkable, while a double-digit percent of float is commonly described as heavily shorted.
And yes — reported short interest can exceed the float. A borrowed share, once sold, lands in a new owner's account, where it can be lent out and sold short again; each hop adds to reported short interest while the float stays fixed. GameStop in January 2021 remains the best-known case of short interest above the float, and the reference event for a short squeeze — a stretch in which crowded short positioning coincided with a sharp rally and a scramble to buy shares back. Days to cover and percent of float are the two most-watched short squeeze indicators: one measures how long a full exit would take, the other how crowded the trade is.
The Highest Days-to-Cover Stocks Right Now
High short interest stocks come in two flavors: mega-caps carrying large absolute share counts (like AAPL above) and smaller names where the short position is enormous relative to daily trading. Days to cover surfaces the second kind: the same short interest over thinner volume means more days to cover. Screening the latest settlement date, requiring at least a million shares of average daily volume:
The exact SQL behind every number
SELECT ticker,
round(max(days_to_cover), 1) AS days_to_cover,
round(max(avg_daily_volume) / 1e6, 1) AS avg_daily_volume_m_shares
FROM global_markets.stocks_short_interest
WHERE settlement_date = (SELECT max(settlement_date) FROM global_markets.stocks_short_interest)
AND avg_daily_volume >= 1000000
GROUP BY ticker
ORDER BY days_to_cover DESC
LIMIT 10The current leader, KCLHF, shows 29.6 days to cover on roughly 1 million shares of typical daily volume. Note what the table is not: none of these are household mega-caps. Names this thin also tend to trade with wider quotes, and the round-trip cost of a position is part of any squeeze story — see what a bid-ask spread is before reading too much into their prices.
FAQ
What is the difference between short volume and short interest?
Short interest is the outstanding stock of open short positions, measured at twice-monthly settlement dates. Short volume is the flow of short-marked sale volume each trading day. A short opened and closed within the same day appears in short volume and never in short interest.
Is high short interest good or bad for a stock?
Neither, on its own — it measures positioning, not direction. A high number describes a crowded bearish trade; during sharp rallies, crowded shorts have historically coincided with squeezes, and plenty of heavily-shorted stocks have also kept declining. Treat it as context, not a forecast.
Does high daily short volume mean a stock will go down?
No. A high short volume ratio is normal even in healthy mega-caps — AAPL printed 46.5% on the most recent day in our window. Much of that volume is market-maker and intraday activity that closes out the same day.
What is a good days to cover number?
There is no official threshold. AAPL's latest ratio is 2.76 — routine for a liquid mega-cap — while the current screen-topper prints 29.6.
Where can I find short interest data?
FINRA publishes the bi-monthly short interest file and the daily short sale volume files, and most brokers surface the bi-monthly number on their quote pages. Every figure on this page comes from those same datasets, via the stored query results under each panel.
Every chart above is backed by the exact SQL shown beneath it — open a panel, read the query, and re-run it with any ticker on the Strasmore terminal to check short interest, days to cover, and daily short volume for yourself.