STRASMORE/EXPLORE 2,595 QUERIES

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.

as of ranking 6×3read in context →
us_dividend_withholding — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickergross_per_share_usdnet_after_30_pct_usd
JNJ5.283.7
PG4.293
XOM4.122.88
MSFT3.642.55
KO2.081.46
AAPL1.060.74
Rows × columns
6 × 3
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 us_dividend_withholding, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisus-stock-market-hours-singapore-time
sgt_clock_curve series 34×3 → sgt_holidays series 12×6 → dst_shift_dates series 9×5 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 → SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 → See all 2,595 queries →