LOAN SIP CALCULATOR

Financial Calculator - Home Loan & SIP

Financial Calculator

Calculate Home Loan Amortization and SIP Returns

Home Loan Calculator

Loan Amount ₹ 25,00,000
₹ 1 Lac ₹ 10 Cr
Tenure (Years) 20
1 30
Interest Rate (% P.A.) 8.5%
0.5% 15%

SIP Calculator

Monthly Investment Amount ₹ 25,000
₹ 500 ₹ 1 Lac
Investment Period (Years) 30
1 50
Expected Annual Returns (%) 15%
1% 30%
`;// Open print window const printWindow = window.open('', '_blank'); printWindow.document.write(printContent); printWindow.document.close(); printWindow.focus(); printWindow.print(); }function resetCalculator() { // Reset all input values to defaults document.getElementById('loanAmount').value = 2500000; document.getElementById('tenure').value = 20; document.getElementById('interestRate').value = 8.5; document.getElementById('sipAmount').value = 25000; document.getElementById('sipPeriod').value = 30; document.getElementById('sipReturns').value = 15; document.getElementById('adjustInflation').checked = false;// Update slider displays updateSliderDisplays();// Hide results and summary document.getElementById('resultsContainer').style.display = 'none'; document.getElementById('summaryContainer').style.display = 'none';// Clear any error messages hideError();// Scroll to top window.scrollTo({ top: 0, behavior: 'smooth' }); }

Leave a Reply

Your email address will not be published. Required fields are marked *