Skip to content

Instantly share code, notes, and snippets.

View opensourceportfolio's full-sized avatar

Leon Tager opensourceportfolio

View GitHub Profile
@opensourceportfolio
opensourceportfolio / cloudSettings
Last active July 15, 2019 03:27
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-07-15T03:27:06.371Z","extensionVersion":"v3.3.1"}
/* 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);
},