STRASMORE/EXPLORE 2,595 QUERIES

cap_weights

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 11×3read in context →
cap_weights — 11 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolmarket_cap_trillionsshare_of_group_pct
NVDA5.42317.56
AAPL4.90215.87
GOOGL4.18713.56
GOOG4.14613.42
MSFT3.69711.97
AMZN2.698.71
META1.9816.41
AVGO1.6725.41
TSLA1.4934.83
COST0.3981.29
NFLX0.2990.97
Rows × columns
11 × 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 cap_weights, derived from the stored result.
ColumnTypeRangeNotes
symbol text 11 distinct values (AAPL, AMZN, AVGO…)
market_cap_trillions number 0.299 to 5.423
share_of_group_pct number 0.97 to 17.56 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.

WITH mcaps AS
(
    SELECT
        ticker,
        argMax(toFloat64(market_cap), date) AS mcap
    FROM global_markets.stocks_ratios
    WHERE ticker IN ('AAPL','MSFT','NVDA','AMZN','AVGO','META','GOOGL','GOOG','TSLA','NFLX','COST')
      AND date >= today() - 45
      AND market_cap > 0
    GROUP BY ticker
)
SELECT
    ticker                                               AS symbol,
    round(mcap / 1e12, 3)                                AS market_cap_trillions,
    round(100 * mcap / (SELECT sum(mcap) FROM mcaps), 2) AS share_of_group_pct
FROM mcaps
ORDER BY mcap DESC
⌘/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 → reconstitution_tape ranking 10×4 → 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 →