retencion
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-23, from nke-dividend-for-spanish-investors.
| date | fecha_ex_label | bruto_usd | neto_con_w8ben_usd | neto_sin_w8ben_usd |
|---|---|---|---|---|
| 2024-12-02 | 02/12/2024 | 0.4 | 0.34 | 0.28 |
| 2025-03-03 | 03/03/2025 | 0.4 | 0.34 | 0.28 |
| 2025-06-02 | 02/06/2025 | 0.4 | 0.34 | 0.28 |
| 2025-09-02 | 02/09/2025 | 0.4 | 0.34 | 0.28 |
| 2025-12-01 | 01/12/2025 | 0.41 | 0.3485 | 0.287 |
| 2026-03-02 | 02/03/2026 | 0.41 | 0.3485 | 0.287 |
| 2026-06-01 | 01/06/2026 | 0.41 | 0.3485 | 0.287 |
| 2026-09-01 | 01/09/2026 | 0.41 | 0.3485 | 0.287 |
- Rows × columns
- 8 × 5
- Period covered
- to
- 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 |
|---|---|---|---|
date |
date | 2024-12-02 to 2026-09-01 | |
fecha_ex_label |
text | 8 distinct values (01/06/2026, 01/09/2026, 01/12/2025…) | |
bruto_usd |
number | 0.4 to 0.41 | US dollars |
neto_con_w8ben_usd |
number | 0.34 to 0.3485 | US dollars |
neto_sin_w8ben_usd |
number | 0.28 to 0.287 | US dollars |
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
fecha_ex AS date,
formatDateTime(fecha_ex, '%d/%m/%Y') AS fecha_ex_label,
round(importe, 4) AS bruto_usd,
round(importe * 0.85, 4) AS neto_con_w8ben_usd,
round(importe * 0.70, 4) AS neto_sin_w8ben_usd
FROM
(
SELECT
ex_dividend_date AS fecha_ex,
any(toFloat64(cash_amount)) AS importe
FROM global_markets.stocks_dividends
WHERE ticker = 'NKE'
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date DESC
LIMIT 8
)
ORDER BY fecha_ex
Trabaja con estos datos en tu asistente de IA
Se abre listo para consultar, con los datos de esta página. Gratis, sin cuenta.