I want to create a mortgage calculator. I have following values and using that i want to calculate the monthly payment plan for mortgage.
amount:3,00,000$ down payment:50,000$ Interest rate:8.0% Loan term:30 years Property tax:1200$ insurance:1200$ PMI:1.0%
I am looking for the formula to calculate payment plan monthly basis. As its for 30 year I can have 360 month and monthly payment will be fix so what could be formula for it.
Except the PMI,tax and insurance i have formula which works fine which is monthly amount=PR x IN / (1 – (1 + IN)–PE)
<script language="JavaScript" type="text/javascript">
function find_payment(PR, IN, PE) {
var PAY = (PR * IN) / (1 - Math.pow(1 + IN, -PE))
return PAY
}
var principal = 200000
var interest = 0.09
var term = 30
var monthly_payment = find_payment(principal, interest / 12, term * 12)
alert("Amount of the loan:\t$" + principal + "\n" +
"Annual interest rate:\t" + interest * 100 + "%\n" +
"Term of the mortgage loan:\t" + term + " years\n\n" +
"Monthly payment:\t$" + monthly_payment)
</script>
I want to integrate pmi, tax and insurance also.
Thanks in advance