kalendarz
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.
| ex_date | dzien_ex | dzien_ustalenia_praw | dzien_wyplaty | kwota_usd | status |
|---|---|---|---|---|---|
| 2024-07-26 | 26.07.2024 | 26.07.2024 | 03.09.2024 | 0.42 | za nami |
| 2024-11-08 | 08.11.2024 | 08.11.2024 | 02.12.2024 | 0.42 | za nami |
| 2025-01-24 | 24.01.2025 | 24.01.2025 | 07.03.2025 | 0.43 | za nami |
| 2025-05-09 | 09.05.2025 | 09.05.2025 | 13.06.2025 | 0.43 | za nami |
| 2025-07-25 | 25.07.2025 | 25.07.2025 | 02.09.2025 | 0.43 | za nami |
| 2025-11-07 | 07.11.2025 | 07.11.2025 | 01.12.2025 | 0.43 | za nami |
| 2026-01-23 | 23.01.2026 | 23.01.2026 | 06.03.2026 | 0.43 | za nami |
| 2026-05-08 | 08.05.2026 | 08.05.2026 | 12.06.2026 | 0.43 | za nami |
| 2026-07-24 | 24.07.2026 | 24.07.2026 | 01.09.2026 | 0.43 | za nami |
- 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 |
|---|---|---|---|
ex_date |
date | 2024-07-26 to 2026-07-24 | |
dzien_ex |
text | 9 distinct values (07.11.2025, 08.05.2026, 08.11.2024…) | |
dzien_ustalenia_praw |
text | 9 distinct values (07.11.2025, 08.05.2026, 08.11.2024…) | |
dzien_wyplaty |
text | 9 distinct values (01.09.2026, 01.12.2025, 02.09.2025…) | |
kwota_usd |
number | 0.42 to 0.43 | US dollars |
status |
text | 1 distinct value (za nami) |
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(ex_dividend_date) AS ex_date,
formatDateTime(ex_dividend_date, '%d.%m.%Y') AS dzien_ex,
if(max(record_date) > toDate('2000-01-01'),
formatDateTime(max(record_date), '%d.%m.%Y'),
'nie podano') AS dzien_ustalenia_praw,
if(max(pay_date) > toDate('2000-01-01'),
formatDateTime(max(pay_date), '%d.%m.%Y'),
'nie podano') AS dzien_wyplaty,
round(toFloat64(max(cash_amount)), 4) AS kwota_usd,
if(ex_dividend_date >= today(), 'przed nami', 'za nami') AS status
FROM global_markets.stocks_dividends
WHERE ticker = 'PFE'
AND ex_dividend_date >= today() - 830
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.