STRASMORE/EXPLORE 2,433 QUERIES

Share of reported volume marked short, Q1 2026 disclosure window

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-06, from When Are 13F Filings Due? 2026 Deadlines.

as of ranking 5×3read in context →
Share of reported volume marked short, Q1 2026 disclosure window — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickershort_volume_pctreported_volume_millions
SPY53.4581.6
KO47.5108.6
AAPL46.3457.6
NVDA42.52113.6
MSFT38.5339.8
Rows × columns
5 × 3
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 Share of reported volume marked short, Q1 2026 disclosure window, derived from the stored result.
ColumnTypeRangeNotes
ticker text 5 distinct values (AAPL, KO, MSFT…)
short_volume_pct number 38.5 to 53.4 percent
reported_volume_millions number 108.6 to 2,113.6 count

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    ticker,
    round(100 * (sum(short_vol) / sum(total_vol)), 1) AS short_volume_pct,
    round(sum(total_vol) / 1e6, 1)                    AS reported_volume_millions
FROM
(
    SELECT
        ticker,
        date              AS session_date,
        max(short_volume) AS short_vol,
        max(total_volume) AS total_vol
    FROM global_markets.stocks_short_volume
    WHERE ticker IN ('NVDA', 'AAPL', 'MSFT', 'SPY', 'KO')
      AND date >= '2026-04-01'
      AND date <= '2026-05-15'
    GROUP BY ticker, session_date
)
GROUP BY ticker
HAVING sum(total_vol) > 0
ORDER BY short_volume_pct DESC
⌘/Ctrl + Enter
More from this analysisWhen Are 13F Filings Due? 2026 Deadlines
Trading during the Q1 2026 disclosure window, five household names ranking 5×4 AAPL: quarter-end snapshot price vs the price on the 13F deadline series 8×7 The four 13F deadlines for the 2026 quarters series 4×7 Month-end closes that set a new high for the window, by year (SPY) ranking 21×4 Form types on the gap day (June 30, 2026) against the trading day before it ranking 14×3 When Q1 2026 13F reports landed, by week after quarter end ranking 13×2 See all 2,433 queries →