calculate_cagr
Calculate the compound annual growth rate of an investment using start value, end value, and number of years.
Instructions
Calculate CAGR (Compound Annual Growth Rate). CAGR = (End/Start)^(1/n) - 1. Standard measure for investment returns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| years | Yes | ||
| end_value | Yes | ||
| start_value | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |