us_dividend_withholding
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-25, from us-stock-market-hours-singapore-time.
| ticker | gross_per_share_usd | net_after_30_pct_usd |
|---|---|---|
| JNJ | 5.28 | 3.7 |
| PG | 4.29 | 3 |
| XOM | 4.12 | 2.88 |
| MSFT | 3.64 | 2.55 |
| KO | 2.08 | 1.46 |
| AAPL | 1.06 | 0.74 |
- Rows × columns
- 6 × 3
- 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…) | |
gross_per_share_usd |
number | 1.06 to 5.28 | US dollars |
net_after_30_pct_usd |
number | 0.74 to 3.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.
WITH paid AS
(
SELECT
ticker,
ex_dividend_date,
max(cash_amount) AS cash_amount
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'JNJ', 'PG', 'KO', 'XOM')
AND currency = 'USD'
AND ex_dividend_date >= toDate('2025-09-01')
AND ex_dividend_date < toDate('2026-09-01')
GROUP BY ticker, ex_dividend_date
)
SELECT
ticker,
round(sum(cash_amount), 2) AS gross_per_share_usd,
round(sum(cash_amount) * 0.70, 2) AS net_after_30_pct_usd
FROM paid
GROUP BY ticker
ORDER BY gross_per_share_usd DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.