historia_roczna
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.
| rok | suma_na_akcje_usd | liczba_wyplat |
|---|---|---|
| 2016 | 1.2 | 4 |
| 2017 | 1.28 | 4 |
| 2018 | 1.36 | 4 |
| 2019 | 1.44 | 4 |
| 2020 | 1.52 | 4 |
| 2021 | 1.56 | 4 |
| 2022 | 1.6 | 4 |
| 2023 | 1.64 | 4 |
| 2024 | 1.68 | 4 |
| 2025 | 1.72 | 4 |
| 2026 | 1.29 | 3 |
- Rows × columns
- 11 × 3
- 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 |
|---|---|---|---|
rok |
text | 11 distinct values (2016, 2017, 2018…) | |
suma_na_akcje_usd |
number | 1.2 to 1.72 | US dollars |
liczba_wyplat |
number | 3 to 4 |
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(toYear(ex_dividend_date)) AS rok,
round(sum(kwota_usd), 4) AS suma_na_akcje_usd,
count() AS liczba_wyplat
FROM
(
SELECT
ex_dividend_date,
toFloat64(max(cash_amount)) AS kwota_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'PFE'
AND ex_dividend_date >= toDate('2016-01-01')
GROUP BY ex_dividend_date
)
GROUP BY rok
ORDER BY rok
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.