calculate_mirr
Calculate Modified Internal Rate of Return using finance and reinvestment rates for accurate investment analysis and cash flow evaluation.
Instructions
Calculate Modified Internal Rate of Return
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cashFlows | Yes | ||
financeRate | Yes | Finance rate for negative cash flows | |
reinvestRate | Yes | Reinvestment rate for positive cash flows |
Input Schema (JSON Schema)
{
"properties": {
"cashFlows": {
"items": {
"type": "number"
},
"type": "array"
},
"financeRate": {
"description": "Finance rate for negative cash flows",
"type": "number"
},
"reinvestRate": {
"description": "Reinvestment rate for positive cash flows",
"type": "number"
}
},
"required": [
"cashFlows",
"financeRate",
"reinvestRate"
],
"type": "object"
}