Strasmore Research
Learn am Matt ConnorBy Matt Connor · Updated 2026-08-12

Wetin be DRIP and how e dey work for investment

See how DRIP dey use your dividend buy more share automatically. We explain the three types, pay date price rules, and how each reinvestment dey create new tax lot.

Dividend reinvestment plan, wey dem dey call DRIP, na standing instruction wey dey turn cash dividend go back inside the same security instead of make the cash just dey sit down for your account. The purchase dey happen on or just after the pay date, for whatever price dey market that time, and dem normally fill am reach fractional share wey get three or four decimal places. Three different ways dey to run DRIP, and dem differ based on who dey execute the purchase and how much e dey cost.

Wetin be dividend reinvestment plan?

The process na the same for all the three: dem declare cash, dem pay cash, and dem use the cash buy more of the same security within one or two days. The only thing wey dey change na the backend process.

  1. Company sponsored plan. The issuer go hire transfer agent, the registrar wey dey keep shareholder roll, to run enrollment and buying. Dem dey keep shares for the agent books under separate account number, outside your brokerage. Some sponsors dey price reinvested shares at small discount to the market. Some dey charge enrollment fee, fee for each purchase, or fee when you wan sell.
  2. Broker synthetic reinvestment. Your brokerage go receive the cash on the pay date, buy shares for open market or allocate dem from inventory, then credit the fraction to your position. Most big US brokers dey run this one without commission, and you fit switch am on per holding or for the whole account. The issuer no get hand for this one.
  3. Fund automatic reinvestment. Mutual fund dey reinvest income and capital gain distributions at the net asset value wey dem set for the reinvestment date. ETF distribution dey reach your broker as cash first, and the broker go treat am exactly like stock dividend.

The difference dey show when you go look for your shares. Company plan positions dey stay away from your broker: dem no dey appear for brokerage statement, and you no fit sell dem with ordinary market order. Broker-run and fund-run reinvestments dey land inside the account wey you already dey use.

When DRIP dey actually buy the shares?

Four dates dey control every cash dividend. The declaration date na when the board announce am. The ex-dividend date na the first session wey the security go trade without the upcoming payment: if you own am through the prior close, the dividend na your own; if you buy am on the ex-date, the payment belong to the seller. The record date na the snapshot of the shareholder roll, and under the T+1 settlement cycle wey US equities move to for May 2024, e now dey fall on the same session as the ex-date. The pay date na when cash reach the holder, and na that date DRIP dey act. Our note on the record date and ex-dividend date don break the sequence down step by step.

The wait between the ex-date and the pay date dey take weeks.

QueryDays wey dey between ex-dividend date and cash: six household dividend payers
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 DESC
Run this yourself

Across the 6 household payers for the panel, PG get the longest average wait at 25.2 days from ex-dividend date to cash, and its slowest single payment take 28 days. AAPL na the quickest at 3.4 days. During that time, the opening price on the ex-date don already reduce by the dividend amount, while the cash itself still dey transit.

Why the reinvestment price na the pay date price

DRIP no dey buy at the ex-dividend price. E dey buy with the cash wey dey ground, on the day wey the cash dey available. Over a wait of some weeks, the security price fit dey anywhere.

QueryKO: ex-dividend close versus pay date close, 2021 reach 2026
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_on
Run this yourself

The panel track 22 consecutive Coca-Cola (KO) dividends. In Apr 2021, the ex-dividend session close at $50.36 and the pay date close at $52.51, a move of 4.27% across the gap. The last pair wey we chart, Jul 2026, reinvest near $81.29. The two lines dey track each other and dem rarely meet. Automation dey buy on a date wey the issuer calendar set, at whatever price the market offer that afternoon.

How often DRIP dey go market?

Cadence na the issuer choice. Most US listed payers dey distribute quarterly. Small minority dey pay monthly, and even smaller group dey pay once or twice a year.

QueryHow frequent listed payers dey pay, trailing 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 DESC
Run this yourself

Quarterly na the dominant cadence, e cover 4961 distinct tickers wey pay cash over the trailing year, with average of 12.9 days from ex-date to cash. The thinnest bucket, Irregular, hold 1670. Cadence dey set how often DRIP go market. E no dey change the annual dividend, and e no dey change dividend yield, wey dem calculate from the annual total against the price.

Every reinvestment dey open new tax lot

Tax lot na batch of shares with one purchase price and one purchase date. Buy once and you hold single lot. Reinvest for ten years and you go hold dozens, each one get its own basis and its own holding period clock.

QueryReinvestment events per year: monthly payer versus quarterly payer
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 year
Run this yourself

In 2025, Realty Income (O), wey be monthly payer, produce 13 distributions against 4 from Coca-Cola. Over the 10 full calendar years wey we chart, the gap between the two lines na the gap for lot count for identical holding period. Cadence detail dey inside our note on monthly dividend stocks and inside the Realty Income dividend history.

Four things dey follow from that lot count.

  • For taxable account, dem dey tax reinvested dividend for the year wey dem pay am, at the same rate as cash, and dem dey report am on the 1099-DIV. No money reach your hand, but the tax still dey owed.
  • Each lot start its own holding period. Lot wey you buy within the past twelve months na short term when you sell, no matter the age of the original position under am.
  • Specific identification, the method wey allow you pick which shares to sell, dey hard to manage across dozens of small lots, and wrong pick go change the gain wey you report. Our guide to cost basis methods and specific identification don cover the mechanics.
  • Wash sale tracking go start. Selling shares at loss while reinvestment buy the same security within thirty days on either side go disallow part of that loss, and the disallowed amount go add to the basis of the replacement shares. The disallowed portion dey scale with the number of replacement shares, so small reinvestment against big sale go disallow small slice. You still must track am.

Rules differ by country and by account type. Inside tax deferred or tax free account, all this yearly bookkeeping no dey happen.

The honest downsides

  • Concentration. DRIP always dey buy the same thing. Position wey dey feed from its own dividends dey grow against the rest of the account, and no rebalancing dey happen on its own.
  • Price indifference. The plan dey buy at the pay date price whether the security dey near 52 week high or 52 week low.
  • Fractional share friction. Fractions generally no fit move for ACATS transfer, the standard US broker-to-broker account move. The usual way na say whole shares go transfer in kind and the delivering broker go sell the fraction for cash, wey be taxable sale outside sheltered account.
  • Plan specific costs and lags. Company sponsored plans fit carry enrollment and per-purchase fees, and dem often batch sell orders on schedule instead of routing dem when you ask. Discount on reinvestment price, where dem offer am, dey look different once you count those fees against am.

FAQ

Wetin DRIP mean?

Dividend reinvestment plan. The label cover three arrangements: plan wey issuer transfer agent run, broker automatic reinvestment of cash dividends, and fund reinvestment of its own distributions. The buying mechanism differ for each; the effect on the position na the same.

Dem dey tax reinvested dividends?

For taxable account, yes. Reinvested dividend dey taxable for the year wey dem pay am, at the same rate as if you collect the cash, and e dey appear on the 1099-DIV. The shares wey arrive carry their own cost basis. Inside tax deferred or tax free account, e no be yearly taxable event. Rules vary by country.

DRIP dey buy at the ex-dividend date price?

No. The buy dey execute on or shortly after the pay date, wey dey land weeks after the ex-dividend date as the first panel measure, and e dey fill at the price wey dey market that time.

I must hold through the ex-dividend date to get the dividend?

You must own the shares before the ex-dividend session open, wey mean say you must buy at the latest on the session before. Selling on or after the ex-date still go pay you that dividend. Buying on the ex-date no go pay you.

I fit transfer fractional shares to another broker?

Usually no. For account transfer, whole shares dey move in kind while the delivering broker typically sell the fraction for cash. For taxable account, that sale carry its own gain or loss.


Every panel here dey come with the exact SQL under am, wey you fit expand beneath the chart. To compare ex-date close against pay date close on security wey you already hold, ask the question for plain English on the Strasmore terminal.