• Resolved jdahlbom

    (@jdahlbom)


    Hi,

    My customer needs to calculate effective interest rate.
    Using the sliderfunction you have on the demo where you fill in “Loan Amount”, “Payback time” and get the montly cost.

    But we also have Effective interest that need to be calculated into all of this.
    Not just the standard rate.

    The formula is:
    //a = amount, y = years, i = interest return function calcInterest(a, y, r) { var numberFilter = $filter(“number”); var i = (r / 12) / 100; //Terminrente return numberFilter(a * (Math.pow((1 + i), y * 12) * i / ((Math.pow((1 + i), y * 12)) – 1)), 0); };

    Is this possible for you guys to implement? Can buy the pro version ofcourse!

    Best regards,
    Joakim

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jdahlbom

    (@jdahlbom)

    Annual Effective Interest Rate = (1 + interest rate/number of compounding periods )^number of compounding periods – 1

    Plugin Author Estatik

    (@estatik)

    Hi there!
    This can be done for sure on a custom basis. Please, contact our support team with this request and our managers will help you.
    Thanks!

    Thread Starter jdahlbom

    (@jdahlbom)

    Sent you guys an email! Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Effective interest rate’ is closed to new replies.