forked from ebradyjobory/finance.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfinance.js
executable file
·276 lines (236 loc) · 8.15 KB
/
finance.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
//Finance.js
//For more information, visit http://financejs.org
//Copyright 2014 - 2015 Essam Al Joubori, MIT license
// Instantiate a Finance class
var Finance = function() {};
// Present Value (PV)
Finance.prototype.PV = function (rate, cf1, numOfPeriod) {
numOfPeriod = typeof numOfPeriod !== 'undefined' ? numOfPeriod : 1;
var rate = rate/100, pv;
pv = cf1 / Math.pow((1 + rate),numOfPeriod);
return Math.round(pv * 100) / 100;
};
// Future Value (FV)
Finance.prototype.FV = function (rate, cf0, numOfPeriod) {
var rate = rate/100, fv;
fv = cf0 * Math.pow((1 + rate), numOfPeriod);
return Math.round(fv * 100) / 100;
};
// Net Present Value (NPV)
Finance.prototype.NPV = function (rate) {
var rate = rate/100, npv = arguments[1];
for (var i = 2; i < arguments.length; i++) {
npv +=(arguments[i] / Math.pow((1 + rate), i - 1));
}
return Math.round(npv * 100) / 100;
};
// seekZero seeks the zero point of the function fn(x), accurate to within x \pm 0.01. fn(x) must be decreasing with x.
function seekZero(fn) {
var x = 1;
while (fn(x) > 0) {
x += 1;
}
while (fn(x) < 0) {
x -= 0.01
}
return x + 0.01;
}
// Internal Rate of Return (IRR)
Finance.prototype.IRR = function(cfs) {
var depth = cfs.depth;
var args = cfs.cashFlow;
var numberOfTries = 1;
// Cash flow values must contain at least one positive value and one negative value
var positive, negative;
Array.prototype.slice.call(args).forEach(function (value) {
if (value > 0) positive = true;
if (value < 0) negative = true;
})
if (!positive || !negative) throw new Error('IRR requires at least one positive value and one negative value');
function npv(rate) {
numberOfTries++;
if (numberOfTries > depth) {
throw new Error('IRR can\'t find a result');
}
var rrate = (1 + rate/100);
var npv = args[0];
for (var i = 1; i < args.length; i++) {
npv += (args[i] / Math.pow(rrate, i));
}
return npv;
}
return Math.round(seekZero(npv) * 100) / 100;
};
// Payback Period (PP)
Finance.prototype.PP = function(numOfPeriods, cfs) {
// for even cash flows
if (numOfPeriods === 0) {
return Math.abs(arguments[1]) / arguments[2];
}
// for uneven cash flows
var cumulativeCashFlow = arguments[1];
var yearsCounter = 1;
for (i = 2; i < arguments.length; i++) {
cumulativeCashFlow += arguments[i];
if (cumulativeCashFlow > 0) {
yearsCounter += (cumulativeCashFlow - arguments[i]) / arguments[i];
return yearsCounter;
} else {
yearsCounter++;
}
}
};
// Return on Investment (ROI)
Finance.prototype.ROI = function(cf0, earnings) {
var roi = (earnings - Math.abs(cf0)) / Math.abs(cf0) * 100;
return Math.round(roi * 100) / 100;
};
// Amortization
Finance.prototype.AM = function (principal, rate, period, yearOrMonth, payAtBeginning) {
var numerator, denominator, am;
var ratePerPeriod = rate / 12 / 100;
// for inputs in years
if (!yearOrMonth) {
numerator = buildNumerator(period * 12);
denominator = Math.pow((1 + ratePerPeriod), period * 12) - 1;
// for inputs in months
} else if (yearOrMonth === 1) {
numerator = buildNumerator(period)
denominator = Math.pow((1 + ratePerPeriod), period) - 1;
} else {
console.log('not defined');
}
am = principal * (numerator / denominator);
return Math.round(am * 100) / 100;
function buildNumerator(numInterestAccruals) {
if (payAtBeginning) {
//if payments are made in the beginning of the period, then interest shouldn't be calculated for first period
numInterestAccruals -= 1;
}
return ratePerPeriod * Math.pow((1 + ratePerPeriod), numInterestAccruals);
}
};
// Profitability Index (PI)
Finance.prototype.PI = function(rate, cfs) {
var totalOfPVs = 0, PI;
for (var i = 2; i < arguments.length; i++) {
var discountFactor;
// calculate discount factor
discountFactor = 1 / Math.pow((1 + rate/100), (i - 1));
totalOfPVs += arguments[i] * discountFactor;
}
PI = totalOfPVs/Math.abs(arguments[1]);
return Math.round(PI * 100) / 100;
};
// Discount Factor (DF)
Finance.prototype.DF = function(rate, numOfPeriods) {
var dfs = [], discountFactor;
for (var i = 1; i < numOfPeriods; i++) {
discountFactor = 1 / Math.pow((1 + rate/100), (i - 1));
roundedDiscountFactor = Math.ceil(discountFactor * 1000)/1000;
dfs.push(roundedDiscountFactor);
}
return dfs;
};
// Compound Interest (CI)
Finance.prototype.CI = function(rate, numOfCompoundings, principal, numOfPeriods) {
var CI = principal * Math.pow((1 + ((rate/100)/ numOfCompoundings)), numOfCompoundings * numOfPeriods);
return Math.round(CI * 100) / 100;
};
// Compound Annual Growth Rate (CAGR)
Finance.prototype.CAGR = function(beginningValue, endingValue, numOfPeriods) {
var CAGR = Math.pow((endingValue / beginningValue), 1 / numOfPeriods) - 1;
return Math.round(CAGR * 10000) / 100;
};
// Leverage Ratio (LR)
Finance.prototype.LR = function(totalLiabilities, totalDebts, totalIncome) {
return (totalLiabilities + totalDebts) / totalIncome;
};
// Rule of 72
Finance.prototype.R72 = function(rate) {
return 72 / rate;
};
// Weighted Average Cost of Capital (WACC)
Finance.prototype.WACC = function(marketValueOfEquity, marketValueOfDebt, costOfEquity, costOfDebt, taxRate) {
var E = marketValueOfEquity;
var D = marketValueOfDebt;
var V = marketValueOfEquity + marketValueOfDebt;
var Re = costOfEquity;
var Rd = costOfDebt;
var T = taxRate;
var WACC = ((E / V) * Re/100) + (((D / V) * Rd/100) * (1 - T/100));
return Math.round(WACC * 1000) / 10;
};
/**
* Loan Payment calculation.
* @param rate Rate of interest, 100-based (15% = 15), per period
* @param principal Loan amount
* @param numOfPayments
* @see http://www.financeformulas.net/Loan_Payment_Formula.html
*/
Finance.prototype.PMT = function (rate, numOfPayments, principal) {
var rate = rate/100, pmt;
pmt = -(principal * rate) / (1 - Math.pow(1 + rate, -numOfPayments))
return Math.round(pmt * 100) / 100;
};
// IAR calculates the Inflation-adjusted return
Finance.prototype.IAR = function(investmentReturn, inflationRate){
return 100 * (((1 + investmentReturn) / (1 + inflationRate)) - 1);
}
// XIRR - IRR for irregular intervals
Finance.prototype.XIRR = function(cfs, dts, guess) {
if (cfs.length != dts.length) throw new Error('Number of cash flows and dates should match');
var positive, negative;
Array.prototype.slice.call(cfs).forEach(function (value) {
if (value > 0) positive = true;
if (value < 0) negative = true;
});
if (!positive || !negative) throw new Error('XIRR requires at least one positive value and one negative value');
guess = !!guess ? guess : 0;
var limit = 100; //loop limit
var guess_last;
var durs = [];
durs.push(0);
//Create Array of durations from First date
for(var i = 1; i < dts.length; i++) {
durs.push(durYear(dts[0], dts[i]));
}
do {
guess_last = guess;
guess = guess_last - sumEq(cfs, durs, guess_last);
limit--;
}while(guess_last.toFixed(5) != guess.toFixed(5) && limit > 0);
var xirr = guess_last.toFixed(5) != guess.toFixed(5) ? null : guess*100;
return Math.round(xirr * 100) / 100;
}
//CAPM calculates expected return of an asset.
Finance.prototype.CAPM = function (rf, beta, emr, err) {
var ans = rf/100 + beta * (emr/100 - rf/100);
return ans;
}
//Returns the Value of stock with dividend growing at a
//constant growth rate to perpetuity.
Finance.prototype.stockPV = function (g, ke, D0) {
var valueOfStock = (D0 * (1 + g/100))/((ke/100) - (g/100))
return Math.round(valueOfStock)
}
//Returns Sum of f(x)/f'(x)
function sumEq(cfs, durs, guess) {
var sum_fx = 0;
var sum_fdx = 0;
for (var i = 0; i < cfs.length; i++) {
sum_fx = sum_fx + (cfs[i] / Math.pow(1 + guess, durs[i]));
}
for ( i = 0; i < cfs.length; i++) {
sum_fdx = sum_fdx + (-cfs[i] * durs[i] * Math.pow(1 + guess, -1 - durs[i]));
}
return sum_fx / sum_fdx;
}
//Returns duration in years between two dates
function durYear(first, last) {
return (Math.abs(last.getTime() - first.getTime()) / (1000 * 3600 * 24 * 365));
}
if (typeof exports !== 'undefined' && typeof module !== 'undefined' && module.exports) {
module.exports = Finance;
module.exports.Finance = Finance;
}