STRASMORE/EXPLORE 2,469 QUERIES

cap_denominator

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-22, from how-to-check-if-a-us-stock-is-sharia-compliant.

as of ranking 6×4read in context →
cap_denominator — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickeravg_24m_cap_bnspot_cap_bnspot_vs_avg_pct
JNJ471.3653.638.7
AAPL3780.9508234.4
XOM545.3674.923.8
KO313.6377.520.4
MSFT3323.73779.213.7
PG381.6358.7-6
Rows × columns
6 × 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_denominator, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (AAPL, JNJ, KO…)
avg_24m_cap_bn number 313.6 to 3,780.9
spot_cap_bn number 358.7 to 5,082
spot_vs_avg_pct number -6 to 38.7 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
    p.ticker                                         AS ticker,
    round(p.avg_close * s.shares_out / 1e9, 1)       AS avg_24m_cap_bn,
    round(p.last_close * s.shares_out / 1e9, 1)      AS spot_cap_bn,
    round((p.last_close / p.avg_close - 1) * 100, 1) AS spot_vs_avg_pct
FROM
(
    SELECT
        ticker,
        avg(toFloat64(close))          AS avg_close,
        argMax(toFloat64(close), date) AS last_close
    FROM global_markets.stocks_daily_aggs
    WHERE ticker IN ('AAPL', 'MSFT', 'JNJ', 'KO', 'XOM', 'PG')
      AND date >= today() - 730
      AND date <= today()
    GROUP BY ticker
) AS p
INNER JOIN
(
    SELECT
        ticker,
        argMax(diluted_shares_outstanding, (filing_date, period_end, timeframe)) AS shares_out
    FROM
    (
        SELECT
            arrayJoin(tickers) AS ticker,
            filing_date,
            period_end,
            timeframe,
            diluted_shares_outstanding
        FROM global_markets.stocks_income_statements
        WHERE hasAny(tickers, ['AAPL', 'MSFT', 'JNJ', 'KO', 'XOM', 'PG'])
          AND timeframe != 'ttm'
          AND diluted_shares_outstanding > 0
    )
    WHERE ticker IN ('AAPL', 'MSFT', 'JNJ', 'KO', 'XOM', 'PG')
    GROUP BY ticker
) AS s ON s.ticker = p.ticker
ORDER BY spot_vs_avg_pct DESC, ticker
⌘/Ctrl + Enter