Rising Dividend Yield on Indian Stocks: 13.54% CAGR With a -11.71% Max Drawdown

Rising dividend yield on NSE returned 13.54% annually from 2000 to 2025 with a -11.71% max drawdown, +1.48% excess vs Sensex. The best risk-adjusted returns of any market we tested. Returns in INR.

Growth of $10,000 invested in Rising Dividend Yield on Indian exchanges vs S&P 500 from 2000 to 2025.

We ran the rising dividend yield screen on NSE stocks from 2000 to 2025. The portfolio returned 13.54% annually vs 12.06% for the Sensex, with a max drawdown of just -11.71%. That drawdown number is the real headline. In a market known for violent swings, a strategy built on steady dividend growers produced the shallowest peak-to-trough decline of any exchange we tested. India is the standout market for this signal.

Contents

  1. Method
  2. The Screen (SQL)
  3. What We Found
  4. 25 years of data. +1.48% annual alpha over the Sensex.
  5. Year-by-year returns
  6. Key Observations
  7. 2000-2006: Seven years of cash
  8. 2008: Crisis resilience
  9. 2009: The recovery compounded
  10. The explosive years: 2013, 2016, 2020, 2023
  11. The worst invested year: 2011
  12. Currency and Benchmark Notes
  13. Why India Stands Out
  14. Limitations
  15. Takeaway
  16. Part of a Series
  17. References
  18. Run This Screen Yourself

Data: FMP financial data warehouse, 2000–2025. Updated March 2026.


Method

Data source: Ceta Research (FMP financial data warehouse) Universe: NSE, market cap > ₹20B (~$240M USD) Period: 2000-2025 (25 years, 25 annual periods) Signal: 3 consecutive FY years of rising dividendYield, driven by DPS growth (not price decline) Quality filters: ROE > 10%, Payout < 75% Portfolio: Top 30 by 2-year yield expansion, equal weight Rebalancing: Annual (July) Cash rule: Hold cash if fewer than 10 stocks qualify Benchmark: Sensex (INR, local benchmark) Transaction costs: Size-tiered (0.1-0.5% one-way)

For the full methodology and signal construction, see the main US Rising Yield post.


The Screen (SQL)

WITH yearly_yield AS (
    SELECT r.symbol, r.date, r.fiscalYear AS yr,
        r.dividendYield, r.dividendPerShare, r.dividendPayoutRatio,
        LAG(r.dividendYield, 1) OVER (PARTITION BY r.symbol ORDER BY r.fiscalYear) AS yield_1yr,
        LAG(r.dividendYield, 2) OVER (PARTITION BY r.symbol ORDER BY r.fiscalYear) AS yield_2yr,
        LAG(r.dividendPerShare, 1) OVER (PARTITION BY r.symbol ORDER BY r.fiscalYear) AS dps_1yr,
        LAG(r.dividendPerShare, 2) OVER (PARTITION BY r.symbol ORDER BY r.fiscalYear) AS dps_2yr
    FROM financial_ratios r
    WHERE r.period = 'FY' AND r.dividendYield > 0
),
screened AS (
    SELECT y.symbol, y.date, y.yr,
        y.dividendYield, y.dividendPerShare, y.dividendPayoutRatio,
        (y.dividendYield - y.yield_2yr) AS yield_change_2yr,
        CASE
            WHEN y.dividendPerShare > y.dps_1yr AND y.dps_1yr > y.dps_2yr THEN 'Consecutive DPS Growth'
            WHEN y.dividendPerShare > y.dps_1yr THEN 'Partial DPS Growth'
            ELSE 'Price Decline Driver'
        END AS yield_driver
    FROM yearly_yield y
    WHERE y.yield_2yr IS NOT NULL
      AND y.dividendYield > y.yield_1yr AND y.yield_1yr > y.yield_2yr
      AND y.dividendPerShare > y.dps_1yr
      AND y.dividendPayoutRatio > 0 AND y.dividendPayoutRatio < 0.75
    QUALIFY ROW_NUMBER() OVER (PARTITION BY y.symbol ORDER BY y.date DESC) = 1
)
SELECT s.symbol, p.companyName,
    ROUND(s.dividendYield * 100, 2) AS yield_pct,
    ROUND(s.yield_change_2yr * 100, 2) AS yield_expansion_2yr_pct,
    s.yield_driver,
    ROUND(s.dividendPayoutRatio * 100, 1) AS payout_pct,
    ROUND(k.returnOnEquityTTM * 100, 1) AS roe_pct,
    ROUND(k.marketCap / 1e9, 1) AS market_cap_b
FROM screened s
JOIN key_metrics_ttm k ON s.symbol = k.symbol
JOIN profile p ON s.symbol = p.symbol
WHERE k.returnOnEquityTTM > 0.10
  AND k.marketCap > 20e9  -- ₹20B (~$240M USD)
  AND p.exchange = 'NSE'
ORDER BY s.yield_change_2yr DESC
LIMIT 30

Run this query on Ceta Research


What We Found

Growth of $10,000 invested in Rising Dividend Yield on Indian exchanges vs S&P 500 from 2000 to 2025. Portfolio grew to ~$216K. Returns in INR, benchmark in USD.
Growth of $10,000 invested in Rising Dividend Yield on Indian exchanges vs S&P 500 from 2000 to 2025. Portfolio grew to ~$216K. Returns in INR, benchmark in USD.

25 years of data. +1.48% annual alpha over the Sensex.

Metric Rising Yield (INR) Sensex (INR)
CAGR 13.54% 12.06%
Total Return 2,179% 1,691%
Volatility 23.20% 23.03%
Max Drawdown -11.71% -39.61%
Sharpe Ratio 0.292 0.209
Sortino Ratio 0.902 0.346
Calmar Ratio 1.156 0.305
Beta 0.694 -
Alpha 1.48% -
Win Rate (annual) 44% -
Avg Stocks per Period 27.8 -
Cash Periods 7 of 25 -
Invested Periods 18 of 25 -

The strategy turned ₹10,000 into roughly ₹228,000, vs ₹179,000 for the Sensex. The 13.54% CAGR includes seven cash years at 0% return. Active-period returns are higher.

The max drawdown is the standout: -11.71%. The Sensex's worst drawdown was -39.61%. Indian dividend growers avoided the deep crashes that characterize emerging markets. The Calmar ratio (1.156) is the best of any exchange we tested, meaning the strategy delivered the most return per unit of drawdown risk.

The beta of 0.694 confirms the portfolio isn't just riding the market. It captures upside while protecting downside. The Sensex benchmark returned 12.06% over this period, reflecting India's strong equity market growth. The +1.48% excess shows the dividend growth signal adds value on top of that.

Year-by-year returns

Rising Dividend Yield India vs S&P 500 annual returns from 2000 to 2024.
Rising Dividend Yield India vs S&P 500 annual returns from 2000 to 2024.

Year Rising Yield (INR) Sensex (INR) Excess
2000 0.0% (cash) -29.3% +29.3%
2001 0.0% (cash) -4.1% +4.1%
2002 0.0% (cash) +9.6% -9.6%
2003 0.0% (cash) +35.2% -35.2%
2004 0.0% (cash) +49.4% -49.4%
2005 0.0% (cash) +47.0% -47.0%
2006 0.0% (cash) +37.1% -37.1%
2007 -8.7% -6.8% -1.8%
2008 +15.4% +7.3% +8.1%
2009 +47.4% +19.1% +28.3%
2010 +10.2% +7.8% +2.5%
2011 -2.5% -7.5% +5.0%
2012 +8.6% +11.9% -3.2%
2013 +52.5% +32.8% +19.7%
2014 +19.9% +8.1% +11.8%
2015 +16.3% -2.4% +18.7%
2016 +44.8% +14.4% +30.4%
2017 +15.6% +12.9% +2.6%
2018 +4.9% +12.9% -8.0%
2019 -3.7% -10.0% +6.3%
2020 +82.7% +46.4% +36.3%
2021 -11.7% +1.4% -13.1%
2022 +34.5% +22.5% +12.0%
2023 +58.6% +21.8% +36.8%
2024 +6.6% +5.0% +1.6%

Key Observations

2000-2006: Seven years of cash

The strategy couldn't find enough qualifying stocks on NSE for the first seven years. India's dividend culture was still developing. Most large-caps either didn't pay dividends or didn't meet the quality filters. This is honest accounting: the 13.54% CAGR spans all 25 years, including seven years of dead weight. During these cash years, the Sensex surged (2003-2006 saw four consecutive years of +35% to +49% gains), meaning the strategy missed India's early bull market entirely.

2008: Crisis resilience

The portfolio gained 15.4% while the Sensex gained 7.3%. Indian dividend growers outperformed the local market during the GFC. The stocks passing the screen in mid-2007 (the July rebalance) were companies that had grown their dividends for three straight years through 2005-2007. These were cash-generative businesses that held value better than the broader market.

2009: The recovery compounded

+47.4% the year after the GFC, vs +19.1% for the Sensex. The portfolio that outperformed during the crash then captured the recovery. Two years combined: +69% (portfolio) vs +27% (Sensex). That's the quality filter working in both directions.

The explosive years: 2013, 2016, 2020, 2023

Four years returned over 44%. This pattern doesn't exist in US or European markets. India's dividend growers compound aggressively when conditions are right. 2013 (+52.5%) coincided with foreign institutional investor flows into quality Indian names. 2016 (+44.8%) followed demonetization, which favored formalized, well-governed companies. 2020 (+82.7%) was the strongest single year. The pandemic sell-off created a buying opportunity, and Indian dividend growers rebounded with force. 2023 (+58.6%) reflected India's manufacturing push and domestic consumption growth.

The worst invested year: 2011

-2.5% in 2011 vs -7.5% for the Sensex. The worst loss was shallow, and even in that down year the strategy outperformed the local index. The max drawdown of -11.71% occurred over multiple years, not a single crash. In absolute terms, an -11.7% worst case over 25 years is exceptional for an emerging market equity strategy.


Currency and Benchmark Notes

Returns are in Indian Rupees. The benchmark is also in Rupees (Sensex). The INR/USD rate moved from roughly 46 in 2000 to roughly 84 in 2024, a ~45% decline or about 2.4% annual drag for foreign investors.

For currency-adjusted comparison to US markets:

Metric Rising Yield (INR) Est. USD equiv S&P 500 (USD)
CAGR 13.54% ~11.1% 7.85%
vs Sensex +1.48% - -
vs SPY (cross-currency) ~+5.7% ~+3.3% -

Against the Sensex, the strategy delivered +1.48% annual excess. Against SPY (cross-currency, not adjusted), the portfolio's 13.54% INR return vs SPY's 7.85% USD return appears as +5.7% excess, but this mixes currency effects with stock selection alpha. The honest comparison is vs Sensex: +1.48% annual alpha from the dividend growth signal.

For INR-based investors, the 13.54% CAGR is the realized return. For foreign investors without a currency hedge, subtract ~2.4% annually for rupee depreciation.


Why India Stands Out

India produced the best results of any market we tested for this signal. Three factors drive this.

Dividend culture. Indian companies, particularly those from industrial families, have a strong tradition of growing dividends. The rising yield screen captures this cultural bias directly. Companies that increase payouts for three consecutive years in India tend to keep doing it.

Structural growth. India's nominal GDP grew roughly 10% annually over this period. Companies growing dividends faster than their stock prices were doing it against a backdrop of expanding revenues and profits. The quality filters (ROE > 10%, payout < 75%) ensured we were capturing genuine compounders, not companies distributing capital they couldn't invest.

Lower volatility than the index. The beta of 0.694 vs Sensex shows the portfolio moves less than the market. The -11.71% max drawdown vs Sensex's -39.61% demonstrates downside protection. The 2008 result (+15.4% vs +7.3% for Sensex) and 2009 recovery (+47.4% vs +19.1%) show the strategy selecting companies that compound through stress.


Limitations

Cash drag and missed bull market. 7 of 25 periods were in cash (2000-2006). During these years, the Sensex gained massively (2003-2006 saw annual returns of +35% to +49%). The strategy sat out India's early bull market entirely. Investors with shorter time horizons would have abandoned it before the active returns started.

Currency risk for foreign investors. Returns are in INR. The rupee depreciated ~2.4% annually vs USD. Foreign investors need to account for currency exposure.

Survivorship bias. Exchange membership uses current company profiles, not historical. BSE and NSE compositions were different in the early 2000s. Delisted companies aren't captured.

Market cap filter in INR. The ₹20B threshold (~$240M USD at 2025 rates) is in Indian Rupees. In USD terms, this is lower than the $1B used for US exchanges, reflecting India's different market structure. Some qualifying stocks may have thinner liquidity than their US counterparts.

No taxes modeled. India's Securities Transaction Tax (STT), Dividend Distribution Tax (abolished 2020, replaced with income tax on dividends), and short-term capital gains tax aren't included. These reduce realized returns.

Transaction costs are estimated. We use size-tiered costs (0.1-0.5% one-way), but actual slippage on mid-cap Indian stocks can exceed these estimates, particularly for less liquid BSE-listed names.


Takeaway

Rising dividend yield on Indian stocks produced the strongest results of any market we tested. 13.54% CAGR, +1.48% excess vs Sensex, and a max drawdown of just -11.71%. The Calmar ratio (1.156) and Sortino ratio (0.902) confirm the returns weren't bought with excessive risk.

The max drawdown tells the story: -11.71% for the strategy vs -39.61% for the Sensex. Indian dividend growers provided genuine downside protection. Four individual years exceeded +44% returns. The worst invested year was -2.5%. This asymmetry, big upside with contained downside, is what makes India the top market for this signal.

The costs are real. Seven years of cash during India's early bull market (2003-2006 Sensex gains of +35% to +49% were completely missed). Currency depreciation eats 2-3% annually for foreign investors. The strategy requires patience.

For investors with a long time horizon and an allocation to Indian equities, the rising dividend yield screen remains the strongest signal we've found. The +1.48% alpha vs Sensex is modest, but the -11.71% max drawdown is exceptional.


Part of a Series

This analysis is part of our rising dividend yield global exchange comparison: - Rising Yield on US Stocks (NYSE + NASDAQ + AMEX) - 9.56% CAGR, the baseline - Rising Yield on German Stocks (XETRA) - 9.23% CAGR, +4.19% vs DAX - Rising Yield on Canadian Stocks (TSX) - 8.86% CAGR, +4.91% vs TSX - Rising Yield on Japanese Stocks (JPX) - 8.38% CAGR, +5.07% vs Nikkei - Rising Yield on UK Stocks (LSE) - 6.86% CAGR, +5.63% vs FTSE 100 - Rising Yield: 16-Exchange Global Comparison - full comparison table


References

  • Campbell, John Y., and Robert J. Shiller. "The Dividend-Price Ratio and Expectations of Future Dividends and Discount Factors." Review of Financial Studies 1, no. 3 (1988): 195-228.
  • Cochrane, John H. "The Dog That Did Not Bark: A Defense of Return Predictability." Review of Financial Studies 21, no. 4 (2008): 1533-1575.

Run This Screen Yourself

All metrics used in this analysis (dividendYield, dividendPerShare, ROE, payout ratios) are queryable via SQL on Ceta Research. Filter by exchange (BSE or NSE) and see what passes today.

The full backtest code (Python + DuckDB) is available in our GitHub repository.


Data: Ceta Research, FMP financial data warehouse. Universe: NSE. Annual rebalance (July), equal weight top 30, 2000-2025. Returns in INR. Benchmark: Sensex (local).