<"; part1 += "bo"; part1 += "d"; part1 += "y "; part1 += "bgcolor= '#FFFFFF'>"; part1 += "

"; part1 += "Vehicle Loan Amortization Schedule

print this schedule

"; var part2 = "
"; part2 += ""; part2 += ""; part2 += ""; part2 += ""; part2 += ""; part2 += ""; part2 += ""; var part3 = ("" + v_pmt_row + ""); var part4 = ""; part4 += ""; part4 += "
"; part2 += "Principal: " + fns(v_principal,2,1,1,1) + "
"; part2 += "Interest Rate: " + fns(v_rate,2,0,2,1) + "
"; part2 += "Payment Interval: Monthly
"; part2 += "# of Payments: " + Math.ceil(v_npr) + "
"; part2 += "Payment: " + fns(v_payment,2,1,1,1) + "
Schedule of Payments
"; part2 += "Please allow for slight rounding differences."; part2 += "
Pmt #"; part2 += "DatePaymentPrincipalInterestBalance
Grand Total $" + fns((Number(v_accum_prin)+Number(v_accum_int)),2,1,0,0) + "$" + fns(v_accum_prin,2,1,0,0) + ""; part4 += ""; part4 += "$" + fns(v_accum_int,2,1,0,0) + ""; part4 += "

"; part4 += "
"; part4 += "
"; var schedule = (part1 + "" + part2 + "" + part3 + part4 + ""); reportWin = window.open("","","width=900,height=800,toolbar=yes,menubar=yes,scrollbars=yes"); reportWin.document.write(schedule); reportWin.document.close(); } function amortizationInline(form) { var vinlineamortinsert = document.getElementById("inlineamortinsert"); vinlineamortinsert.innerHTML = "

Your Loan Amortization

Payment #Date Payment Principal Interest Balance
"; var Vyear = Number(document.calc.loanoriginationyear.value); var Vday = Number(document.calc.loanoriginationday.value); var Vmonth = Number(document.calc.loanoriginationmonth.selectedIndex); if (Vmonth < 1) { Vmonth = 1; } if (Vday < 1) { Vday = 1; } var startdate = moment([Vyear, Vmonth - 1, Vday]); while (!startdate.isValid()) { Vday = Vday -1; startdate = moment([Vyear, Vmonth - 1, Vday]); } var v_principal = sn(document.calc.loanAmt.value); var v_rate = sn(document.calc.interest.value); var v_term = sn(document.calc.payments.value); var v_interval = 12; var v_npr = v_term * v_interval; var v_payment = sn(document.calc.payment.value); var v_prin = v_principal; var v_int = v_rate; v_int /= 100; v_int /= v_interval; var v_int_port = 0; var v_accum_int = 0; var v_prin_port = 0; var v_accum_prin = 0; var v_count = 0; var v_pmt_row = ""; var v_pmt_num = 0; var v_display_pmt_amt = 0; var v_accum_year_prin = 0; var v_accum_year_int = 0; var v_year = 1; var currentdate = 0; currentdate = moment(startdate); startdate.add(1, 'months'); while (Vday > 28 && moment(startdate).date() < Vday && moment(startdate).date() < moment(startdate).daysInMonth()) { startdate.add((1), 'days'); } while(v_count < v_npr) { if(v_count < (v_npr-1)) { v_int_port = v_prin * v_int; v_int_port *= 100; v_int_port = Math.round(v_int_port); v_int_port /= 100; v_accum_int = Number(v_accum_int) + Number(v_int_port); v_accum_year_int = Number(v_accum_year_int) + Number(v_int_port); v_prin_port = Number(v_payment) - Number(v_int_port); v_prin_port *= 100; v_prin_port = Math.round(v_prin_port); v_prin_port /= 100; v_accum_prin = Number(v_accum_prin) + Number(v_prin_port); v_accum_year_prin = Number(v_accum_year_prin) + Number(v_prin_port); v_prin = Number(v_prin) - Number(v_prin_port); v_display_pmt_amt = Number(v_prin_port) + Number(v_int_port); } else { v_int_port = v_prin * v_int; v_int_port *= 100; v_int_port = Math.round(v_int_port); v_int_port /= 100; v_accum_int = Number(v_accum_int) + Number(v_int_port); v_accum_year_int = Number(v_accum_year_int) + Number(v_int_port); v_prin_port = v_prin; v_accum_prin = Number(v_accum_prin) + Number(v_prin_port); v_accum_year_prin = Number(v_accum_year_prin) + Number(v_prin_port); v_prin = 0; v_display_pmt_amt = Number(v_prin_port) + Number(v_int_port); } v_pmt_num = Number(v_pmt_num) + Number(1); v_count = Number(v_count) + Number(1); currentdate = moment(startdate); startdate.add(1, 'months'); while (Vday > 28 && moment(startdate).date() < Vday && moment(startdate).date() < moment(startdate).daysInMonth()) { startdate.add((1), 'days'); } var currentmonthofyear = currentdate.format('MM'); var tbody = document.getElementById('amort_sched'); var row = document.createElement('tr'); var cell1 = document.createElement('td'); cell1.style.textAlign = "right"; cell1.style.fontSize = "medium"; cell1.innerHTML = '' + v_pmt_num + ''; row.appendChild(cell1); var cell2 = document.createElement('td'); cell2.style.textAlign = "right"; cell2.style.fontSize = "medium"; cell2.innerHTML = '' + currentdate.format('ll') + ''; row.appendChild(cell2); var cell3 = document.createElement('td'); cell3.style.textAlign = "right"; cell3.style.fontSize = "medium"; cell3.innerHTML = '' + fns(v_display_pmt_amt,2,1,1,1) + ''; row.appendChild(cell3); var cell4 = document.createElement('td'); cell4.style.textAlign = "right"; cell4.style.fontSize = "medium"; cell4.innerHTML = '' + fns(v_prin_port,2,1,1,1) + '' ; row.appendChild(cell4); var cell5 = document.createElement('td'); cell5.style.textAlign = "right"; cell5.style.fontSize = "medium"; cell5.innerHTML = '' + fns(v_int_port,2,1,1,1) + ''; row.appendChild(cell5); var cell6 = document.createElement('td'); cell6.style.textAlign = "right"; cell6.style.fontSize = "medium"; cell6.innerHTML = '' + fns(v_prin,2,1,1,1) + ''; row.appendChild(cell6); tbody.appendChild(row); if(currentmonthofyear == 12 && v_pmt_num < v_npr) { var tbody = document.getElementById('amort_sched'); var row = document.createElement('tr'); row.setAttribute('class', 'theyear'); document.body.appendChild(row); var cell1 = document.createElement('td'); cell1.style.textAlign = "right"; cell1.style.fontSize = "medium"; cell1.innerHTML = ''; row.appendChild(cell1); var cell2 = document.createElement('td'); cell2.style.textAlign = "right"; cell2.style.fontSize = "medium"; cell2.innerHTML = 'Year ' + v_year + ''; row.appendChild(cell2); var cell3 = document.createElement('td'); cell3.style.textAlign = "right"; cell3.style.fontSize = "medium"; cell3.innerHTML = '' + fns(v_accum_year_int+v_accum_year_prin,2,1,1,1) + ''; row.appendChild(cell3); var cell4 = document.createElement('td'); cell4.style.textAlign = "right"; cell4.style.fontSize = "medium"; cell4.innerHTML = '' + fns(v_accum_year_prin,2,1,1,1) + '' ; row.appendChild(cell4); var cell5 = document.createElement('td'); cell5.style.textAlign = "right"; cell5.style.fontSize = "medium"; cell5.innerHTML = '' + fns(v_accum_year_int,2,1,1,1) + ''; row.appendChild(cell5); var cell6 = document.createElement('td'); cell6.style.textAlign = "right"; cell6.style.fontSize = "medium"; cell6.innerHTML = '' + fns(v_prin,2,1,1,1) + ''; row.appendChild(cell6); tbody.appendChild(row); v_year += 1; v_accum_year_prin = 0; v_accum_year_int = 0; } if(v_pmt_num == v_npr) { var tbody = document.getElementById('amort_sched'); var row = document.createElement('tr'); row.setAttribute('class', 'theyear'); document.body.appendChild(row); var cell1 = document.createElement('td'); cell1.style.textAlign = "right"; cell1.style.fontSize = "medium"; cell1.innerHTML = ''; row.appendChild(cell1); var cell2 = document.createElement('td'); cell2.style.textAlign = "right"; cell2.style.fontSize = "medium"; cell2.innerHTML = 'Year ' + v_year + ''; row.appendChild(cell2); var cell3 = document.createElement('td'); cell3.style.textAlign = "right"; cell3.style.fontSize = "medium"; cell3.innerHTML = '' + fns(v_accum_year_int+v_accum_year_prin,2,1,1,1) + ''; row.appendChild(cell3); var cell4 = document.createElement('td'); cell4.style.textAlign = "right"; cell4.style.fontSize = "medium"; cell4.innerHTML = '' + fns(v_accum_year_prin,2,1,1,1) + '' ; row.appendChild(cell4); var cell5 = document.createElement('td'); cell5.style.textAlign = "right"; cell5.style.fontSize = "medium"; cell5.innerHTML = '' + fns(v_accum_year_int,2,1,1,1) + ''; row.appendChild(cell5); var cell6 = document.createElement('td'); cell6.style.textAlign = "right"; cell6.style.fontSize = "medium"; cell6.innerHTML = '' + fns(v_prin,2,1,1,1) + ''; row.appendChild(cell6); tbody.appendChild(row); } if(v_count > 10000 * v_interval) { break; } else { continue; } } } function shareMe(form) { var Vvehicle = document.calc.vehicle.value; var Vprice = sn(document.calc.price.value); var i = sn(document.calc.interest.value); var Vterm = sn(document.calc.payments.value); var Vdown = sn(document.calc.downPmt.value); var Vrebate = sn(document.calc.rebate.value); var Vaddrebate = document.calc.addrebate.options[document.calc.addrebate.selectedIndex].value; var Vtradein = sn(document.calc.trade.value); var Vtradeindebt = sn(document.calc.tradein.value); var Vsalestax = sn(document.calc.tax.value); var Vfinacesalestax = document.calc.financesalestax.options[document.calc.financesalestax.selectedIndex].value; var Vyear = Number(document.calc.loanoriginationyear.value); var Vday = Number(document.calc.loanoriginationday.value); var Vmonth = Number(document.calc.loanoriginationmonth.selectedIndex); var shareresults = document.getElementById("shareyourcalculation"); shareresults.innerHTML = "

Share Your Calculation

/calcs/vehicle.php?price=" + Vprice + "&int="+ i +"&years="+ Vterm + "&down="+ Vdown + "&rebate="+ Vrebate + "&addrebate="+ Vaddrebate + "&tradein="+ Vtradein + "&tradeindebt="+ Vtradeindebt + "&tax="+ Vsalestax +"&fintax="+ Vfinacesalestax +"&theday="+ Vday +"&themonth="+ Vmonth +"&theyear="+ Vyear +"&vehicle="+Vvehicle+"

"; } function clear_results(form) { document.calc.loanAmt.value = ""; document.calc.payment.value = ""; document.calc.interestamount.value = ""; document.calc.salestax.value = ""; document.calc.totalcost.value = ""; } function computeFormAfford(form) { var VmoPmt = sn(document.calcafford.moPmt.value); var Vmonths = sn(12 * document.calcafford.months.value); if(VmoPmt == 0) { } else if(document.calcafford.intRate.value.length == 0) { } else if(Vmonths == 0) { } else { var VdownPay = sn(document.calcafford.downPay.value); var VintRate = sn(document.calcafford.intRate.value); var VtradeInVal = sn(document.calcafford.tradeInVal.value); var VtradeInNeg = sn(document.calcafford.tradeInNeg.value); var Vrebate = sn(document.calcafford.rebate.value); var Vsalestaxrate = sn(document.calcafford.salestaxrate.value)/100; var Vfinsalestax = document.calcafford.finsalestax.options[document.calcafford.finsalestax.selectedIndex].value; var VloanAmt = 0; var VaffordCost = 0; if(VintRate == 0) { VloanAmt = VmoPmt * Vmonths; document.calcafford.loanAmt.value = fns(VloanAmt,0,1,1,1); VaffordCost = Number(VloanAmt) + Number(VdownPay) + Number(VtradeInVal) + Number(Vrebate) -Number(VtradeInNeg); var Vsalestaxorg = (Number(VaffordCost) - Number(VtradeInVal)) * Number(Vsalestaxrate); if (Vfinsalestax == 1) { VaffordCost = Number(VtradeInVal) + (Number(VaffordCost) - Number(VtradeInVal)) * (Number(VaffordCost) - Number(VtradeInVal)) / (Number(Vsalestaxorg) + Number(VaffordCost) - Number(VtradeInVal)); Vsalestaxorg = (Number(VaffordCost) - Number(VtradeInVal)) * Number(Vsalestaxrate); } document.calcafford.salestaxamount.value = fns(Vsalestaxorg,0,1,1,1); document.calcafford.affordCost.value = fns(VaffordCost,0,1,1,1); } else { VintRate /= 100; VintRate /= 12; var pow = 1; for (var j = 0; j < Vmonths; j++) { pow = pow * (1 + VintRate); } VloanAmt = ((pow - 1) * VmoPmt) / (pow * VintRate); document.calcafford.loanAmt.value = fns(VloanAmt,0,1,1,1); VaffordCost = Number(VloanAmt) + Number(VdownPay) + Number(VtradeInVal) + Number(Vrebate) -Number(VtradeInNeg); var Vsalestaxorg = (Number(VaffordCost) - Number(VtradeInVal)) * Number(Vsalestaxrate); if (Vfinsalestax == 1) { VaffordCost = Number(VtradeInVal) + (Number(VaffordCost) - Number(VtradeInVal)) * (Number(VaffordCost) - Number(VtradeInVal)) / (Number(Vsalestaxorg) + Number(VaffordCost) - Number(VtradeInVal)); Vsalestaxorg = (Number(VaffordCost) - Number(VtradeInVal)) * Number(Vsalestaxrate); } document.calcafford.salestaxamount.value = fns(Vsalestaxorg,0,1,1,1); document.calcafford.affordCost.value = fns(VaffordCost,0,1,1,1); } } } function clear_results_afford(form) { document.calcafford.salestaxamount.value = ""; document.calcafford.loanAmt.value = ""; document.calcafford.affordCost.value = ""; }

澳门金沙娱乐城官网

Navigation
Monthly Vehicle Loan Calculator

Vehicle Loan Calculator

This calculator figures monthly vehicle loan payments. To help you see current market conditions and find a local lender current local auto loan rates are published in a table below the calculator.

Loan Basics Amount
Vehicle price $
Loan term in years
Interest Rate % See Rates
Loan Credits Amount
Down payment $
Rebate $
Add rebate to downpayment?
Trade-in allowance $
Additional Expenses Amount
Owed on trade-in $
Sales Tax %
Add sales taxes into loan?
Your Results Amount
Loan amount:
Monthly payment:
Sales Tax:
Total Interest:
Total Cost:
Generate Amortization Schedule?
Loan origination date:

Monthly Loan Budget

Use this calculator to estimate the vehicle price you can afford given a set monthly loan payment. To help you see current market conditions and find a local lender current local auto loan rates are published in a table below the calculator.

Auto Loan Structure Amount
Monthly payment you can afford ($):
Loan term (years):
Annual interest rate (APR %): See Rates
Sales tax rate
Finance sales tax?
Savings & Other Credits Amount
Your down payment($):
Cash rebate added to down payment ($):
Trade-in value ($):
Owed on trade-in ($):
Your Results Amount
You can afford a vehicle costing:
Loan you need to qualify for:
Sales tax amount:

Current Local Auto Loan Rates

Home Buyers May Qualify For Low Downpayment Home Loan Options

Explore conventional mortgages, FHA loans, USDA loans, and VA loans to find out which option is right for you.

Find Out What Loan You Qualify For & Get Pre-Approved Today

Check your options with a trusted Los Angeles lender.

Answer a few questions below and connect with a lender who can help you save today!