STRASMORE/EXPLORE 2,469 QUERIES

cap_path

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 series 25×3read in context →
cap_path — 25 rows by 3 columns, computed from US exchange, SIP and OPRA data.
monthmonth_avg_cap_bnavg_24m_cap_bn
2024-09-013346.33780.1
2024-10-013440.53780.1
2024-11-013406.93780.1
2024-12-013728.63780.1
2025-01-013508.23780.1
2025-02-013566.93780.1
2025-03-013330.53780.1
2025-04-013008.73780.1
2025-05-0130503780.1
2025-06-013000.83780.1
2025-07-013159.73780.1
2025-08-013359.63780.1
2025-09-013626.33780.1
2025-10-013862.83780.1
2025-11-014062.63780.1
2025-12-014132.13780.1
2026-01-013853.13780.1
2026-02-014025.53780.1
2026-03-013812.13780.1
2026-04-013958.53780.1
2026-05-014449.73780.1
2026-06-014432.93780.1
2026-07-014819.83780.1
2026-08-014638.93780.1
2026-09-014922.63780.1
Rows × columns
25 × 3
Period covered
to
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_path, derived from the stored result.
ColumnTypeRangeNotes
month date 2024-09-01 to 2026-09-01
month_avg_cap_bn number 3,000.8 to 4,922.6
avg_24m_cap_bn number every row is 3,780.1

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.month                                                 AS month,
    round(p.avg_close * s.shares_out / 1e9, 1)              AS month_avg_cap_bn,
    round(avg(p.avg_close * s.shares_out / 1e9) OVER (), 1) AS avg_24m_cap_bn
FROM
(
    SELECT
        toString(toStartOfMonth(date)) AS month,
        avg(toFloat64(close))          AS avg_close
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'AAPL'
      AND date >= toStartOfMonth(today() - 730)
      AND date <= today()
    GROUP BY month
) AS p
CROSS JOIN
(
    SELECT argMax(diluted_shares_outstanding, (filing_date, period_end, timeframe)) AS shares_out
    FROM global_markets.stocks_income_statements
    WHERE has(tickers, 'AAPL')
      AND timeframe != 'ttm'
      AND diluted_shares_outstanding > 0
) AS s
ORDER BY month
⌘/Ctrl + Enter