Skip to content

Instantly share code, notes, and snippets.

View seeebiii's full-sized avatar
🏠
Working remotely

Sebastian Hesse seeebiii

🏠
Working remotely
View GitHub Profile
@seeebiii
seeebiii / ExcelFormulas.js
Created November 18, 2016 16:34 — forked from pies/ExcelFormulas.js
Few Excel formulas - PMT, PPMT, XIRR - expressed in Javascript
/* Based on
* - EGM Mathematical Finance class by Enrique Garcia M. <egarcia@egm.co>
* - A Guide to the PMT, FV, IPMT and PPMT Functions by Kevin (aka MWVisa1)
*/
var ExcelFormulas = {
PVIF: function(rate, nper) {
return Math.pow(1 + rate, nper);
},