STRASMORE/EXPLORE 2,170 QUERIES

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.

as of table 5×6read in context →
Percent of reported volume marked short: five large caps on an ordinary day (July 10, 2026) — 5 rows by 6 columns, computed from US exchange, SIP and OPRA data.
tickermarked_short_mnfile_total_mnpct_marked_shortconsolidated_tape_mnfile_share_of_tape_pct
AAPL5.511.348.827.940.5
MSFT4.110.538.820.152.2
NVDA26.666.240.2131.650.3
TSLA8.917.251.631.354.9
KO23.4578.540.2
Rows × columns
5 × 6
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 Percent of reported volume marked short: five large caps on an ordinary day (July 10, 2026), derived from the stored result.
ColumnTypeRangeNotes
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 →