STRASMORE/EXPLORE 2,648 QUERIES

cap_illustration

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-26, from what-stocks-are-in-the-dax.

as of ranking 8×4read in context →
cap_illustration — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolas_of_labelweight_pctover_cap_pct
NVDASep 25, 202628.2713.27
AAPLSep 25, 202625.910.9
MSFTSep 25, 202619.944.94
AMZNSep 25, 202614.010
JPMSep 25, 20264.740
JNJSep 25, 20263.40
KOSep 25, 20261.970
PGSep 25, 20261.770
Rows × columns
8 × 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 cap_illustration, derived from the stored result.
ColumnTypeRangeNotes
symbol text 8 distinct values (AAPL, AMZN, JNJ…)
as_of_label text 1 distinct value (Sep 25, 2026)
weight_pct number 1.77 to 28.27 percent
over_cap_pct number 0 to 13.27 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 latest AS
(
    SELECT
        ticker,
        argMax(toFloat64(market_cap), date) AS mcap,
        max(date)                           AS as_of
    FROM global_markets.stocks_ratios
    WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'JPM', 'JNJ', 'PG', 'KO')
      AND date >= today() - 400
      AND market_cap > 0
    GROUP BY ticker
),
basket AS
(
    SELECT sum(mcap) AS total
    FROM latest
)
SELECT
    l.ticker                                           AS symbol,
    formatDateTime(l.as_of, '%b %e, %Y')               AS as_of_label,
    round(100 * l.mcap / b.total, 2)                   AS weight_pct,
    round(greatest(100 * l.mcap / b.total - 15, 0), 2) AS over_cap_pct
FROM latest AS l
CROSS JOIN basket AS b
ORDER BY weight_pct 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 analysiswhat-stocks-are-in-the-dax
total_return_wedge ranking 10×4 → dividend_cadence ranking 10×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,648 queries →