CAGR
0 && c.end > 0 && c.years > 0)
? (round(((pow((c.end / c.start), (1 / c.years)) - 1) * 100) * 100) / 100) + '%'
: '—'
">—
0 && c.end > 0 && c.years > 0) ? '' : 'Enter positive Start, End and Years to calculate CAGR.'">
Total Growth
0 && c.end >= 0)
? (round(((c.end - c.start) / (c.start == 0 ? 1 : c.start) * 100) * 100) / 100) + '%'
: '—'
">—
Total growth is the overall change, not annualized.
Measures the average annual growth rate of an investment over a period.
Results
CAGR = (End / Start)^(1/Years) − 1