STRASMORE/EXPLORE 2,500 QUERIES

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.

as of series 8×5read in context →
retencion — 8 rows by 5 columns, computed from US exchange, SIP and OPRA data.
datefecha_ex_labelbruto_usdneto_con_w8ben_usdneto_sin_w8ben_usd
2024-12-0202/12/20240.40.340.28
2025-03-0303/03/20250.40.340.28
2025-06-0202/06/20250.40.340.28
2025-09-0202/09/20250.40.340.28
2025-12-0101/12/20250.410.34850.287
2026-03-0202/03/20260.410.34850.287
2026-06-0101/06/20260.410.34850.287
2026-09-0101/09/20260.410.34850.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for retencion, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

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