dividen_tahunan
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 jnj-stock-price-in-myr.
| tahun | dividen_usd | selepas_cukai_30_usd |
|---|---|---|
| 2016 | 3.15 | 2.205 |
| 2017 | 3.32 | 2.324 |
| 2018 | 3.54 | 2.478 |
| 2019 | 3.75 | 2.625 |
| 2020 | 3.98 | 2.786 |
| 2021 | 4.19 | 2.933 |
| 2022 | 4.45 | 3.115 |
| 2023 | 4.7 | 3.29 |
| 2024 | 4.91 | 3.437 |
| 2025 | 5.14 | 3.598 |
- Rows × columns
- 10 × 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 |
|---|---|---|---|
tahun |
text | 10 distinct values (2016, 2017, 2018…) | |
dividen_usd |
number | 3.15 to 5.14 | US dollars |
selepas_cukai_30_usd |
number | 2.205 to 3.598 | 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(y) AS tahun,
round(sum(amaun), 4) AS dividen_usd,
round(sum(amaun) * 0.70, 4) AS selepas_cukai_30_usd
FROM
(
SELECT
toYear(ex_dividend_date) AS y,
id,
any(toFloat64(cash_amount)) AS amaun
FROM global_markets.stocks_dividends
WHERE ticker = 'JNJ'
AND ex_dividend_date >= '2016-01-01'
AND ex_dividend_date < toStartOfYear(today())
GROUP BY y, id
)
GROUP BY y
ORDER BY y
Gunakan data ini dalam pembantu AI anda
Dibuka sedia untuk ditanya, dengan data halaman ini. Percuma, tanpa akaun.