rate_changes
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-26, from acn-dividend-history.
| rate_from | declared_in | old_rate_usd | new_rate_usd | raise_pct |
|---|---|---|---|---|
| Oct 2022 | September | 0.97 | 1.12 | 15.5 |
| Oct 2023 | September | 1.12 | 1.29 | 15.2 |
| Oct 2013 | September | 0.81 | 0.93 | 14.8 |
| Oct 2024 | September | 1.29 | 1.48 | 14.7 |
| Oct 2021 | September | 0.88 | 0.97 | 10.2 |
| Oct 2025 | September | 1.48 | 1.63 | 10.1 |
| Oct 2020 | September | 0.8 | 0.88 | 10 |
| Oct 2016 | September | 1.1 | 1.21 | 10 |
| Oct 2017 | September | 1.21 | 1.33 | 9.9 |
| Oct 2018 | September | 1.33 | 1.46 | 9.8 |
| Oct 2014 | September | 0.93 | 1.02 | 9.7 |
| Oct 2015 | September | 1.02 | 1.1 | 7.8 |
- Rows × columns
- 12 × 5
- 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 |
|---|---|---|---|
rate_from |
text | 12 distinct values (Oct 2013, Oct 2014, Oct 2015…) | |
declared_in |
text | 1 distinct value (September) | |
old_rate_usd |
number | 0.8 to 1.48 | US dollars |
new_rate_usd |
number | 0.88 to 1.63 | US dollars |
raise_pct |
number | 7.8 to 15.5 | percent |
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.
WITH pay AS
(
SELECT
ex_dividend_date AS ex_date,
ifNull(any(declaration_date), toDate('1970-01-01')) AS declared,
toFloat64(any(cash_amount)) AS amt
FROM global_markets.stocks_dividends
WHERE ticker = 'ACN'
AND cash_amount > 0
AND ex_dividend_date >= toDate('2013-01-01')
AND ex_dividend_date <= today()
GROUP BY ex_dividend_date
),
stepped AS
(
SELECT
cur.ex_date AS ex_date,
cur.declared AS declared,
cur.amt AS amt,
argMax(prev.amt, prev.ex_date) AS prev_amt
FROM pay AS cur
CROSS JOIN pay AS prev
WHERE prev.ex_date < cur.ex_date
GROUP BY ex_date, declared, amt
)
SELECT
formatDateTime(ex_date, '%b %Y') AS rate_from,
if(declared > toDate('2000-01-01'),
arrayElement(['January', 'February', 'March', 'April', 'May', 'June',
'July', 'August', 'September', 'October', 'November', 'December'],
toMonth(declared)),
'not reported') AS declared_in,
round(prev_amt, 2) AS old_rate_usd,
round(amt, 2) AS new_rate_usd,
round(100 * (amt / prev_amt - 1), 1) AS raise_pct
FROM stepped
WHERE amt > prev_amt
ORDER BY raise_pct DESC, ex_date DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.