STRASMORE/EXPLORE 2,500 QUERIES

podatek

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 pfe-dividend-for-polish-investors.

as of series 9×6read in context →
podatek — 9 rows by 6 columns, computed from US exchange, SIP and OPRA data.
pay_datedzien_wyplatybrutto_100_akcji_usdpodatek_u_zrodla_usddoplata_w_polsce_usdnetto_usd
2024-09-0303.09.2024426.31.6834.02
2024-12-0202.12.2024426.31.6834.02
2025-03-0707.03.2025436.451.7234.83
2025-06-1313.06.2025436.451.7234.83
2025-09-0202.09.2025436.451.7234.83
2025-12-0101.12.2025436.451.7234.83
2026-03-0606.03.2026436.451.7234.83
2026-06-1212.06.2026436.451.7234.83
2026-09-0101.09.2026436.451.7234.83
Rows × columns
9 × 6
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 podatek, derived from the stored result.
ColumnTypeRangeNotes
pay_date date 2024-09-03 to 2026-09-01
dzien_wyplaty text 9 distinct values (01.09.2026, 01.12.2025, 02.09.2025…)
brutto_100_akcji_usd number 42 to 43 US dollars
podatek_u_zrodla_usd number 6.3 to 6.45 US dollars
doplata_w_polsce_usd number 1.68 to 1.72 US dollars
netto_usd number 34.02 to 34.83 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
    toString(data_wyplaty)                    AS pay_date,
    formatDateTime(data_wyplaty, '%d.%m.%Y')  AS dzien_wyplaty,
    round(kwota_usd * 100, 2)                 AS brutto_100_akcji_usd,
    round(kwota_usd * 100 * 0.15, 2)          AS podatek_u_zrodla_usd,
    round(kwota_usd * 100 * 0.04, 2)          AS doplata_w_polsce_usd,
    round(kwota_usd * 100 * 0.81, 2)          AS netto_usd
FROM
(
    SELECT
        ex_dividend_date,
        max(pay_date)               AS data_wyplaty,
        toFloat64(max(cash_amount)) AS kwota_usd
    FROM global_markets.stocks_dividends
    WHERE ticker = 'PFE'
      AND ex_dividend_date >= today() - 830
    GROUP BY ex_dividend_date
)
WHERE data_wyplaty > toDate('2000-01-01')
ORDER BY data_wyplaty
⌘/Ctrl + Enter

Pracuj z tymi danymi w swoim asystencie AI

Otwiera się gotowy do zapytań, z danymi z tej strony. Za darmo, bez konta.