1.0.3 ā€¢ Published 1 year ago

fnnc v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

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