Percent of reported volume marked short: five large caps on an ordinary day (July 10, 2026)
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-07-26, from FINRA Short Interest Data, Explained.
| ticker | marked_short_mn | file_total_mn | pct_marked_short | consolidated_tape_mn | file_share_of_tape_pct |
|---|---|---|---|---|---|
| AAPL | 5.5 | 11.3 | 48.8 | 27.9 | 40.5 |
| MSFT | 4.1 | 10.5 | 38.8 | 20.1 | 52.2 |
| NVDA | 26.6 | 66.2 | 40.2 | 131.6 | 50.3 |
| TSLA | 8.9 | 17.2 | 51.6 | 31.3 | 54.9 |
| KO | 2 | 3.4 | 57 | 8.5 | 40.2 |
- Rows × columns
- 5 × 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 | 5 distinct values (AAPL, KO, MSFT…) | |
marked_short_mn |
number | 2 to 26.6 | |
file_total_mn |
number | 3.4 to 66.2 | |
pct_marked_short |
number | 38.8 to 57 | percent |
consolidated_tape_mn |
number | 8.5 to 131.6 | |
file_share_of_tape_pct |
number | 40.2 to 54.9 | percent |
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 covered AS (
SELECT ticker,
max(short_volume) AS short_vol,
max(total_volume) AS covered_vol
FROM global_markets.stocks_short_volume
WHERE date = '2026-07-10'
AND ticker IN ('AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO')
GROUP BY ticker
),
tape AS (
SELECT ticker, sum(volume) AS tape_vol
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO')
AND window_start >= toDateTime('2026-07-10 04:00:00', 'America/New_York')
AND window_start < toDateTime('2026-07-10 20:00:00', 'America/New_York')
GROUP BY ticker
)
SELECT covered.ticker AS ticker,
round(covered.short_vol / 1e6, 1) AS marked_short_mn,
round(covered.covered_vol / 1e6, 1) AS file_total_mn,
round(covered.short_vol / covered.covered_vol * 100, 1) AS pct_marked_short,
round(tape.tape_vol / 1e6, 1) AS consolidated_tape_mn,
round(covered.covered_vol / tape.tape_vol * 100, 1) AS file_share_of_tape_pct
FROM covered
JOIN tape ON covered.ticker = tape.ticker
ORDER BY indexOf(['AAPL', 'MSFT', 'NVDA', 'TSLA', 'KO'], covered.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 analysisFINRA Short Interest Data, Explained
AAPL in the short interest file: the five most recent settlement prints
table 5×5
→
Every 2026 settlement date on file, with the securities each print covers
series 13×3
→
Settlement dates per year in the short interest file, 2018–2026
ranking 9×2
→
Daily short-volume file coverage: the two documented truncation days vs their neighbors
ranking 6×2
→
History depth of both FINRA short-sale datasets in this warehouse
scalar 1×4
→
Six household names at the latest settlement: shares short, percent of shares outstanding, days to cover
table 6×6
→
See all 2,170 queries →