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.
| pay_date | dzien_wyplaty | brutto_100_akcji_usd | podatek_u_zrodla_usd | doplata_w_polsce_usd | netto_usd |
|---|---|---|---|---|---|
| 2024-09-03 | 03.09.2024 | 42 | 6.3 | 1.68 | 34.02 |
| 2024-12-02 | 02.12.2024 | 42 | 6.3 | 1.68 | 34.02 |
| 2025-03-07 | 07.03.2025 | 43 | 6.45 | 1.72 | 34.83 |
| 2025-06-13 | 13.06.2025 | 43 | 6.45 | 1.72 | 34.83 |
| 2025-09-02 | 02.09.2025 | 43 | 6.45 | 1.72 | 34.83 |
| 2025-12-01 | 01.12.2025 | 43 | 6.45 | 1.72 | 34.83 |
| 2026-03-06 | 06.03.2026 | 43 | 6.45 | 1.72 | 34.83 |
| 2026-06-12 | 12.06.2026 | 43 | 6.45 | 1.72 | 34.83 |
| 2026-09-01 | 01.09.2026 | 43 | 6.45 | 1.72 | 34.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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.