STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

When Are 13F Filings Due? 2026 Deadlines
Share of reported volume marked short, Q1 2026 disclosure windowranking · 2026-08-06 · 5×3Preview: 5 ranked values, largest first. The four 13F deadlines for the 2026 quartersseries · 2026-08-06 · 4×7Preview: a 4-point series, ending higher. AAPL: quarter-end snapshot price vs the price on the 13F deadlineseries · 2026-08-06 · 8×7Preview: a 8-point series, ending higher. Trading during the Q1 2026 disclosure window, five household namesranking · 2026-08-06 · 5×4Preview: 5 ranked values, largest first.
Share of reported volume marked short, Q1 2026 disclosure window

Share of reported volume marked short, Q1 2026 disclosure window

most recentas 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
the exact SQL behind every number
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
$