STRASMORE/EXPLORE 2,595 QUERIES

reconstitution_tape

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-25, from how-qqq-holdings-are-weighted.

as of ranking 10×4read in context →
reconstitution_tape — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yearrecon_friday_volume_mnother_december_volume_mnrecon_day_ratio
201626.323.61.11
201749.830.11.65
2018141.169.72.03
201927.620.21.37
202041.225.11.64
202181.554.81.49
202268.149.11.39
202362.942.31.49
202460.128.22.13
202560.447.81.26
Rows × columns
10 × 4
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 reconstitution_tape, derived from the stored result.
ColumnTypeRangeNotes
year text 10 distinct values (2016, 2017, 2018…)
recon_friday_volume_mn number 26.3 to 141.1 count
other_december_volume_mn number 20.2 to 69.7 count
recon_day_ratio number 1.11 to 2.13 ratio or rate

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.

WITH dec_days AS
(
    SELECT
        toYear(date)                                                   AS yr,
        toFloat64(volume)                                              AS vol,
        toDayOfWeek(date) = 5 AND toDayOfMonth(date) BETWEEN 15 AND 21 AS is_recon_friday
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'QQQ'
      AND toMonth(date) = 12
      AND date >= '2016-12-01'
)
SELECT
    toString(yr)                                                            AS year,
    round(maxIf(vol, is_recon_friday) / 1e6, 1)                             AS recon_friday_volume_mn,
    round(avgIf(vol, NOT is_recon_friday) / 1e6, 1)                         AS other_december_volume_mn,
    round(maxIf(vol, is_recon_friday) / avgIf(vol, NOT is_recon_friday), 2) AS recon_day_ratio
FROM dec_days
GROUP BY yr
HAVING countIf(is_recon_friday) > 0 AND countIf(NOT is_recon_friday) > 0
ORDER BY yr
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysishow-qqq-holdings-are-weighted
eligibility_screen ranking 12×2 → cap_weights ranking 11×3 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 → SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 → In-sample rank versus out-of-sample Sharpe, same 24 cells ranking 24×4 → See all 2,595 queries →