stake_size
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-24, from bulk-deals-vs-block-deals-in-india.
| ticker | shares_out_bn | stake_shares_mn | stake_value_bn |
|---|---|---|---|
| AAPL | 14.81 | 74.05 | 24.96 |
| MSFT | 7.46 | 37.3 | 18.67 |
| WMT | 8.01 | 40.06 | 4.43 |
| JNJ | 2.43 | 12.15 | 3.27 |
| KO | 4.31 | 21.56 | 1.9 |
| PG | 2.42 | 12.12 | 1.79 |
- Rows × columns
- 6 × 4
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 6 distinct values (AAPL, JNJ, KO…) | |
shares_out_bn |
number | 2.42 to 14.81 | count |
stake_shares_mn |
number | 12.12 to 74.05 | count |
stake_value_bn |
number | 1.79 to 24.96 |
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
shares AS
(
SELECT
t AS ticker,
argMax(diluted_shares_outstanding, (filing_date, period_end)) AS shares_out
FROM global_markets.stocks_income_statements
ARRAY JOIN tickers AS t
WHERE t IN ('AAPL', 'MSFT', 'KO', 'PG', 'WMT', 'JNJ')
AND diluted_shares_outstanding > 0
GROUP BY t
),
prices AS
(
SELECT
ticker,
argMax(toFloat64(price), date) AS last_price
FROM global_markets.stocks_ratios
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'PG', 'WMT', 'JNJ')
AND price > 0
GROUP BY ticker
)
SELECT
s.ticker AS ticker,
round(toFloat64(s.shares_out) / 1e9, 2) AS shares_out_bn,
round(toFloat64(s.shares_out) * 0.005 / 1e6, 2) AS stake_shares_mn,
round(toFloat64(s.shares_out) * 0.005 * p.last_price / 1e9, 2) AS stake_value_bn
FROM shares AS s
INNER JOIN prices AS p ON p.ticker = s.ticker
ORDER BY stake_value_bn DESC
ఈ డేటాతో మీ AI అసిస్టెంట్లో పని చేయండి
ఈ పేజీ డేటాతో, క్వెరీకి సిద్ధంగా తెరుచుకుంటుంది. ఉచితం, ఖాతా అవసరం లేదు.