複利計算(一括 + 月次積立)
calculate_compound_interestCalculate the future value of a lump sum and monthly contributions using monthly compounding interest. Useful for NISA, general investments, and fixed deposit simulations.
Instructions
元本(一括)と毎月の積立額を、月次複利で運用したときの将来価値を計算します。NISA に限らず一般の投資・定期預金シミュに使える汎用ツール。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| principal | No | 一括投入する元本(円)。例: 1000000 | |
| monthlyContribution | No | 毎月の積立額(円)。一括だけなら 0 | |
| annualRate | Yes | 想定年利(%表記。例: 3 = 3%/年) | |
| years | Yes | 運用年数(小数可。例: 0.5 = 半年、10.5 = 10年6ヶ月) |