我已经解决了一个滑块计算器,它基本上是为了帮助用户使用百分比interestRate来计算贷款的付款。经过多次头部划伤后,我原来的工作正常,计算但是我必须把它弄掉。我需要它来计算interestRate或199.9%。
任何帮助?
$(function () {
//First Calculator Slider
$("#slider_low").slider({
range: "min",
value: 1000,
min: 500,
max: 5000,
step: 500,
slide: function (event, ui) {
$("#span_amount").html("£ " + ui.value);
$("#hdn_span_amount").val(ui.value);
total();
}
});
$("#span_amount").html("£ " + $("#slider_low").slider("value"));
$("#hdn_span_amount").val($("#slider_low").slider("value"));
//End First Calculator Slider
//Go by Month
$("#slider_low_secondary").slider({
range: "min",
value: 12,
min: 3,
max: 36,
step: 3,
slide: function (event, ui) {
$("#months").html(ui.value + " Months");
$("#hdn_span_month").val(ui.value);
total();
}
});
$("#months").html($("#slider_low_secondary").slider("value") + " Months");
$("#hdn_span_month").val($("#slider_low_secondary").slider("value"));
//End Go by Month
total();
//Total
function total() {
var amountval = $("#hdn_span_amount").val();
var monthVal = $("#hdn_span_month").val();
var interestRate = 0.108;
var setupfee = 69;
var interest = parseInt(monthVal * amountval * interestRate);
//$('#interest').html('�' + interest);
var totel = parseInt(amountval) + parseInt(interest) + parseInt(setupfee);
totel = parseInt(totel / monthVal);
$('#total_amount').html("£ " + (totel.toFixed(0)));
$('#hdn_total_amount').val((totel.toFixed(0)));
}
//End Total
});
答案 0 :(得分:1)
看起来你在问如何计算利率?公式是
i = n(e ln(R + 1)/ n -1)
其中i是定期利率,n是期数,R是实际利率。实际利率为:
R = I / L
其中我是利息支付总额,L是原始贷款价值。
您已经计算了interest
变量中的总利息金额,因此实际利率将为
interest/amountVal
所以你的月利率是
var monthlyRate = monthVal * (Math.exp(Math.log(intest/amountval + 1)/monthVal) - 1)
乘以12得到APR
=== EDIT ===
我必须道歉,这不是正确的实际利率。请忽略此答案并查看我的其他答案。
答案 1 :(得分:0)
每个付款期间复利一次的贷款当前余额的一般公式为
L n = L n-1 (1 + R) - P
其中L n 是n次付款后的余额(L 0 是原始贷款金额)R是月度定期汇率,P是月付款金额。
在最后一笔付款之后,余额将为0,所以如果我们从那里开始并用上述等式代替所有付款并简化,那么公式就是
L 0 (1 + R) n - P((1 + R) n - 1)/ R = 0
现在,如果你碰巧是一个数学天才,请随意为R解决。我能想到的最好的是
R = P /(P-RL 0 ) 1 / n -1
由于RL 0 是第一期中的利息支付,因此必须小于支付金额,因此如果我们从支付金额的一半开始,步长为1/4支付金额,并且迭代,每次将估计值移近实际值并将步骤减半,我们应该能够在十几次迭代中得出合理的估计值。
function calcInterest(loanAmt, monthlyPayment, nPayments) {
var ipmt = monthlyPayment/2;
var newstep = ipmt/2;
var step = 0;
var i = 100; //set this to a suitable value to prevent infinite loops
while (newstep > 0.01 && step != newstep && i > 0) { //decrease 0.01 to increase accuracy
step = newstep;
if ((ipmt/loanAmt) > (Math.pow(monthlyPayment/(monthlyPayment-ipmt),(1/nPayments)) - 1)) {
ipmt += step;
} else {
ipmt -= step;
}
ipmt = Math.round(ipmt*100)/100;
newstep = Math.round(step/2*100)/100;
i--;
}
// this returns the APR
// take off the * 12 if you want the monthly periodic rate
return((Math.pow(monthlyPayment/(monthlyPayment-ipmt),(1/nPayments)) - 1) * 12);
}
在我的测试中,calcInterest(1000,197,12);
返回1.9880787972304255,约为198.81%