STRASMORE/EXPLORE 2,433 QUERIES

Where AAPL's off-exchange short volume was reported on June 12, 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-09-19, from How to Download FINRA Daily Short Volume Data.

as of ranking 5×3read in context →
Where AAPL's off-exchange short volume was reported on June 12, 2026 — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
venueshort_volume_millionsshare_of_consolidated_pct
Consolidated (CNMS)6.659100
Nasdaq TRF Carteret (Q)6.41296.3
NYSE TRF (N)0.1942.9
Nasdaq TRF Chicago (B)0.0530.8
ADF (D)00
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 Where AAPL's off-exchange short volume was reported on June 12, 2026, derived from the stored result.
ColumnTypeRangeNotes
venue text 5 distinct values
short_volume_millions number 0 to 6.659 count
share_of_consolidated_pct number 0 to 100 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.

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
    tupleElement(v, 1)                                  AS venue,
    round(tupleElement(v, 2) / 1e6, 3)                  AS short_volume_millions,
    round(100 * tupleElement(v, 2) / consolidated, 1)   AS share_of_consolidated_pct
FROM
(
    SELECT
        consolidated,
        arrayJoin([
            ('Consolidated (CNMS)',     consolidated),
            ('Nasdaq TRF Carteret (Q)', carteret),
            ('Nasdaq TRF Chicago (B)',  chicago),
            ('NYSE TRF (N)',            nyse),
            ('ADF (D)',                 adf)
        ]) AS v
    FROM
    (
        SELECT
            toFloat64(ifNull(max(short_volume), 0))                 AS consolidated,
            toFloat64(ifNull(max(nasdaq_carteret_short_volume), 0)) AS carteret,
            toFloat64(ifNull(max(nasdaq_chicago_short_volume), 0))  AS chicago,
            toFloat64(ifNull(max(nyse_short_volume), 0))            AS nyse,
            toFloat64(ifNull(max(adf_short_volume), 0))             AS adf
        FROM global_markets.stocks_short_volume
        WHERE ticker = 'AAPL'
          AND date = '2026-06-12'
    )
)
ORDER BY tupleElement(v, 2) DESC
⌘/Ctrl + Enter
More from this analysisHow to Download FINRA Daily Short Volume Data
Short volume ratio on June 12, 2026 for six household names ranking 6×4 Symbols carried in each June 2026 daily short volume file series 21×5 Month-end closes that set a new high for the window, by year (SPY) ranking 21×4 Highest days to cover, latest settlement date (min 1M shares/day traded) ranking 10×3 Largest month-over-month declines in SPY month-end closes ranking 10×2 How far SPY travels between month end and the third-week release window ranking 6×3 See all 2,433 queries →