STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Market Cap and Which Share Count It Uses
The recovered share count against the filed diluted counttable · 2026-08-22 · 5×6 Dual class tickers and the market cap printed against eachranking · 2026-08-22 · 4×4Preview: 4 ranked values, largest first. Days since the period each filed share count coversranking · 2026-08-22 · 8×3Preview: 8 ranked values, largest first. Apple's basic and diluted share counts, quarter by quarterseries · 2026-08-22 · 20×4Preview: a 16-point series, ending lower.
The recovered share count against the filed diluted count

The recovered share count against the filed diluted count

most recentas of table 5×6read in context →
The recovered share count against the filed diluted count — 5 rows by 6 columns, computed from US exchange, SIP and OPRA data.
tickerimplied_shares_mmfiled_diluted_shares_mmgap_pctperiod_coveredpriced_on
JPM265827824.43Dec 31, 2025Aug 20, 2026
AAPL14594148101.46Dec 27, 2025Aug 20, 2026
NVDA24221243910.7Apr 26, 2026Aug 20, 2026
MSFT742674600.46Dec 31, 2025Aug 20, 2026
KO430343130.24Jul 3, 2026Aug 20, 2026
the exact SQL behind every number
WITH vendor AS
(
    SELECT
        ticker,
        argMax(toFloat64(market_cap), date)             AS mkt_cap,
        argMax(toFloat64(price), date)                  AS px,
        argMax(formatDateTime(date, '%b %e, %Y'), date) AS priced_on
    FROM global_markets.stocks_ratios
    WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'KO', 'JPM', 'XOM')
      AND price > 0
      AND market_cap > 0
    GROUP BY ticker
),
filed AS
(
    SELECT
        ticker,
        argMax(toFloat64(diluted_shares_outstanding), (filing_date, period_end))   AS diluted,
        argMax(formatDateTime(period_end, '%b %e, %Y'), (filing_date, period_end)) AS period_covered
    FROM
    (
        SELECT
            arrayJoin(tickers) AS ticker,
            filing_date,
            period_end,
            diluted_shares_outstanding
        FROM global_markets.stocks_income_statements
        WHERE hasAny(tickers, ['AAPL', 'MSFT', 'NVDA', 'KO', 'JPM', 'XOM'])
          AND timeframe = 'quarterly'
          AND diluted_shares_outstanding > 0
    )
    WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'KO', 'JPM', 'XOM')
    GROUP BY ticker
)
SELECT
    v.ticker                                                      AS ticker,
    round(v.mkt_cap / v.px / 1e6)                                 AS implied_shares_mm,
    round(f.diluted / 1e6)                                        AS filed_diluted_shares_mm,
    round(abs(v.mkt_cap / v.px - f.diluted) * 100 / f.diluted, 2) AS gap_pct,
    f.period_covered                                              AS period_covered,
    v.priced_on                                                   AS priced_on
FROM vendor AS v
INNER JOIN filed AS f ON f.ticker = v.ticker
ORDER BY gap_pct DESC
$