/fnnc

"fnnc" is an npm package that provides a simple and efficient way to perform financial calculations in JavaScript.

Primary LanguageTypeScript

FNNC

All in one financial calculation functions

👉🏻 Package Link

Functions List;

How to use?

First import a function that you want from the package

 import { EMA } from "fnnc";

And then use the function wherever you want.

let closingPrices = [ 12, 34, 56, 32, 54, 65];
let period = 12;
const exponentialMovingAverage = EMA(closingPrices, period);

console.log(exponentialMovingAverage) // 33.66031139827575