financial 1.1.1

A collection of finance calculations mimicking some of Excel Financial Functions interface
Documentation

Financial

GitHub CircleCI crates.io docs.rs

Financial is a Rust crate that contains collection of finance calculations mimicking some of Excel Financial Functions interface. you can find the crate here

What is different than other financial crates?

It supports both periodic and scheduled computation for IRR and NPV.

IRR and NPV functions should be faster since powers are pre-computed iteratively instead of using power function multiple times.

Supported Functions

  • FV(Rate, Nper, Pmt, Pv, Pmt_is_due)
  • PV(Rate, Nper, Pmt, Fv, Pmt_is_due)
  • NPV(Rate, values)
  • XNPV(Rate), values, dates)
  • IRR(values)
  • XIRR(values, dates)

Future Work

  • Add More Functions
  • Add bench tests