Dividend Reinvestment Plans (DRIPs) Explained
How a dividend reinvestment plan works: the three kinds of DRIP, why you buy at the pay date price, and the tax lot each reinvestment quietly creates.
A dividend reinvestment plan, or DRIP, is a standing instruction that turns each cash dividend into more shares of the same security instead of cash sitting in your account. The purchase happens on or just after the pay date, at whatever price prevails then, and it is normally filled to a fractional share carried out three or four decimal places. Three different arrangements answer to the name DRIP, and they differ in who executes the purchase and what it costs.
What is a dividend reinvestment plan?
The outline is the same in all three: cash is declared, cash is paid, cash is spent on more of the same security within a day or two. The plumbing underneath is what changes.
- A company sponsored plan. The issuer hires a transfer agent, the registrar that keeps its shareholder roll, to run enrollment and buying. Shares are held on the agent's books under a separate account number, outside your brokerage. Some sponsors price reinvested shares at a modest discount to the market. Some charge an enrollment fee, a fee for each purchase, or a fee on the way out when you sell.
- A broker's synthetic reinvestment. Your brokerage receives the cash on the pay date, buys shares in the open market or allocates them from inventory, then credits the fraction to your position. Most large US brokers run this with no commission, switched on per holding or across a whole account. The issuer plays no part in it.
- A fund's automatic reinvestment. A mutual fund reinvests income and capital gain distributions at the net asset value struck on the reinvestment date. An ETF distribution arrives at your broker as cash first, and the broker then treats it exactly like a stock dividend.
The difference shows up when you go looking for the shares. Company plan positions sit away from your broker: they do not appear on a brokerage statement, and they cannot be sold with an ordinary market order. Broker run and fund run reinvestments land inside the account you already use.
When does a DRIP actually buy the shares?
Four dates govern every cash dividend. The declaration date is the board's announcement. The ex-dividend date is the first session the security trades without the upcoming payment attached: own it through the prior close and the dividend is yours, buy it on the ex-date and the payment belongs to the seller. The record date is the snapshot of the shareholder roll, and under the T+1 settlement cycle US equities moved to in May 2024 it now falls on the same session as the ex-date. The pay date is when cash reaches the holder, and that is the date a DRIP acts on. Our note on the record date and ex-dividend date takes the sequence apart step by step.
The wait between the ex-date and the pay date is measured in weeks.
The exact SQL behind every number
WITH payouts AS (
SELECT
ticker,
any(ex_dividend_date) AS ex_date,
any(pay_date) AS paid_on
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'JNJ', 'KO', 'MSFT', 'O', 'PG')
AND ex_dividend_date >= '2024-07-01'
AND ex_dividend_date < '2026-07-01'
AND cash_amount > 0
GROUP BY id, ticker
)
SELECT
ticker,
count() AS payment_count,
round(avg(dateDiff('day', ex_date, paid_on)), 1) AS avg_days_ex_to_pay,
max(dateDiff('day', ex_date, paid_on)) AS max_days_ex_to_pay
FROM payouts
WHERE paid_on > ex_date
GROUP BY ticker
ORDER BY avg_days_ex_to_pay DESCAcross the 6 household payers in the panel, PG ran the longest average wait at 25.2 days from ex-dividend date to cash, and its slowest single payment took 28 days. AAPL was the quickest at 3.4 days. During that interval the opening price on the ex-date has already been marked down by the dividend amount, while the cash itself is still in transit.
Why the reinvestment price is the pay date price
A DRIP does not buy at the ex-dividend price. It buys with the cash on hand, on the day the cash is available. Over a wait of several weeks the security can be anywhere.
The exact SQL behind every number
WITH
payouts AS (
SELECT
any(ex_dividend_date) AS ex_date,
any(pay_date) AS paid_on
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
AND ex_dividend_date >= '2021-01-01'
AND ex_dividend_date < '2026-07-01'
AND cash_amount > 0
GROUP BY id
),
bars AS (
SELECT
date AS session_day,
round(avg(toFloat64(close)), 2) AS px
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'KO'
AND date >= '2021-01-01'
AND date < '2026-09-01'
GROUP BY date
)
SELECT
toString(p.paid_on) AS pay_date,
formatDateTime(p.paid_on, '%b %Y') AS pay_label,
e.px AS close_at_ex,
d.px AS close_at_pay,
round(100 * (d.px / e.px - 1), 2) AS move_pct
FROM payouts AS p
INNER JOIN bars AS e ON e.session_day = p.ex_date
INNER JOIN bars AS d ON d.session_day = p.paid_on
ORDER BY p.paid_onThe panel pins 22 consecutive Coca-Cola (KO) dividends. In Apr 2021 the ex-dividend session closed at $50.36 and the pay date closed at $52.51, a move of 4.27% across the gap. The last pair charted, Jul 2026, reinvested near $81.29. The two lines track each other and rarely meet. Automation buys on a date set by the issuer's calendar, at whatever the market offers that afternoon.
How often does a DRIP go to market?
Cadence is the issuer's choice. Most US listed payers distribute quarterly. A minority pay monthly, and a smaller group pays once or twice a year.
The exact SQL behind every number
WITH payouts AS (
SELECT
ticker,
any(frequency) AS freq,
any(ex_dividend_date) AS ex_date,
any(pay_date) AS paid_on
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= '2025-07-01'
AND ex_dividend_date < '2026-07-01'
AND cash_amount > 0
AND ticker NOT IN ('SPCX')
GROUP BY id, ticker
)
SELECT
multiIf(freq = 12, 'Monthly',
freq = 4, 'Quarterly',
freq = 2, 'Semiannual',
freq = 1, 'Annual',
'Irregular') AS cadence,
countDistinct(ticker) AS payer_count,
round(avg(dateDiff('day', ex_date, paid_on)), 1) AS avg_days_ex_to_pay
FROM payouts
WHERE paid_on > ex_date
GROUP BY cadence
ORDER BY payer_count DESCQuarterly is the dominant cadence, covering 4961 distinct tickers that paid cash over the trailing year in view, with an average of 12.9 days from ex-date to cash. The thinnest bucket, Irregular, holds 1670. Cadence sets how often a DRIP goes to market. It does not change the annual dividend, and it does not change dividend yield, which is computed from the annual total against the price.
Every reinvestment opens a new tax lot
A tax lot is a batch of shares with one purchase price and one purchase date. Buy once and you hold a single lot. Reinvest for a decade and you hold dozens, each with its own basis and its own holding period clock.
The exact SQL behind every number
WITH payouts AS (
SELECT
ticker,
any(ex_dividend_date) AS ex_date
FROM global_markets.stocks_dividends
WHERE ticker IN ('KO', 'O')
AND ex_dividend_date >= '2016-01-01'
AND ex_dividend_date < '2026-01-01'
AND cash_amount > 0
GROUP BY id, ticker
)
SELECT
toString(toYear(ex_date)) AS year,
countIf(ticker = 'O') AS monthly_payer_lots,
countIf(ticker = 'KO') AS quarterly_payer_lots
FROM payouts
GROUP BY year
ORDER BY yearIn 2025, Realty Income (O), a monthly payer, produced 13 distributions against 4 from Coca-Cola. Over the 10 full calendar years charted, the gap between the two lines is the gap in lot count for an identical holding period. Cadence detail lives in our note on monthly dividend stocks and in the Realty Income dividend history.
Four things follow from that lot count.
- In a taxable account, a reinvested dividend is taxed in the year it is paid, at the rate it would carry as cash, and it is reported on the 1099-DIV. No money reached you, and the tax is still owed.
- Each lot starts its own holding period. A lot bought within the past twelve months is short term on sale, whatever the age of the original position underneath it.
- Specific identification, the method that lets you pick which shares to sell, gets harder to operate across dozens of small lots, and a wrong pick changes the reported gain. Our guide to cost basis methods and specific identification covers the mechanics.
- Wash sale tracking becomes live. Selling shares at a loss while a reinvestment buys the same security within thirty days on either side disallows part of that loss, and the disallowed amount is added to the basis of the replacement shares. The disallowed portion scales with the number of replacement shares, so a small reinvestment against a large sale disallows a small slice. It still has to be tracked.
Rules differ by country and by account type. Inside a tax deferred or tax free account, none of the yearly bookkeeping above arises.
The honest downsides
- Concentration. A DRIP always buys the same thing. A position fed by its own dividends grows against the rest of the account, and no rebalancing happens on its own.
- Price indifference. The plan buys at the pay date price whether the security sits near a 52 week high or a 52 week low.
- Fractional share friction. Fractions generally cannot move in an ACATS transfer, the standard US broker to broker account move. The usual handling is that whole shares transfer in kind and the delivering broker sells the fraction for cash, which is a taxable sale outside a sheltered account.
- Plan specific costs and lags. Company sponsored plans can carry enrollment and per purchase fees, and they often batch sell orders on a schedule rather than routing them when you ask. A discount on the reinvestment price, where one is offered, reads differently once those fees are counted against it.
FAQ
What does DRIP stand for?
Dividend reinvestment plan. The label covers three arrangements: a plan run by an issuer's transfer agent, a broker's automatic reinvestment of cash dividends, and a fund's reinvestment of its own distributions. The buying mechanism differs in each; the effect on the position is similar.
Are reinvested dividends taxable?
In a taxable account, yes. A reinvested dividend is taxed in the year it is paid, at the same rate it would carry had you taken the cash, and it appears on the 1099-DIV. The shares that arrive then carry their own cost basis. Inside a tax deferred or tax free account it is not a yearly taxable event. Rules vary by country.
Does a DRIP buy at the ex-dividend date price?
No. The buy executes on or shortly after the pay date, which lands weeks after the ex-dividend date as the first panel measures, and it fills at the price prevailing then.
Do I have to hold through the ex-dividend date to get the dividend?
You have to own the shares before the ex-dividend session opens, which means buying at the latest on the session before. Selling on or after the ex-date still pays you that dividend. Buying on the ex-date does not.
Can I transfer fractional shares to another broker?
Usually not. In an account transfer, whole shares move in kind while the fraction is typically sold for cash by the delivering broker. In a taxable account that sale carries its own gain or loss.
Every panel here ships with the exact SQL underneath it, expandable beneath the chart. To compare an ex-date close against a pay date close on a security you already hold, ask the question in plain English on the Strasmore terminal.