javascriptfinancefinancial

Is there any accurate implementation of IRR and PMT function in JavaScript?


I'm developing a new web-based financial application for our company that provides online real-time non-post-back calculation of IRR, and PMT. So, I'm looking for the implementation/library which provides the IRR and PMT functionality in JavaScript. Please kindly suggest.

Thanks

William


Solution

  • IRR: I just had a poke around and found the class org.apache.poi.ss.formula.functions.Irr, and there is a listing of it here.

    Just make sure that you can abide by the license.

    That library doesn't appear to have a direct implementation of PMT.