calculate_irr
Compute the internal rate of return for investment analysis by inputting cash flows including initial investment to evaluate profitability.
Instructions
Calculate Internal Rate of Return
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cashFlows | Yes | Cash flows including initial investment |
Input Schema (JSON Schema)
{
"properties": {
"cashFlows": {
"description": "Cash flows including initial investment",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cashFlows"
],
"type": "object"
}