21 releases

0.10.2 May 26, 2024
0.10.1 Nov 30, 2022
0.9.0 Oct 28, 2022
0.7.1 Jan 13, 2022
0.1.2 Dec 2, 2017

#26 in Finance

Download history 845/week @ 2024-10-20 740/week @ 2024-10-27 472/week @ 2024-11-03 496/week @ 2024-11-10 471/week @ 2024-11-17 612/week @ 2024-11-24 575/week @ 2024-12-01 784/week @ 2024-12-08 1167/week @ 2024-12-15 65/week @ 2024-12-22 322/week @ 2024-12-29 766/week @ 2025-01-05 1052/week @ 2025-01-12 1115/week @ 2025-01-19 1513/week @ 2025-01-26 1501/week @ 2025-02-02

5,186 downloads per month
Used in 5 crates (4 directly)

MIT license

34KB
642 lines

[lin-badge]: https://github.com/danielhstahl/black_scholes_rust/workflows/Rust/badge.svg [cov-badge]: https://coveralls.io/repos/github/danielhstahl/black_scholes_rust/badge.svg?branch=master

Linux Coveralls
![lin-badge] ![cov-badge]

black_scholes_rust

This is a simple Black Scholes option calculator written in rust. Documentation is on docs.rs.

breaking changes

The move from 0.4 to 0.5 results changed the IV api to return a Result<f64, f64> rather than an f64.

using black_scholes_rust

Put the following in your Cargo.toml:

[dependencies]
black_scholes = "0.10.1"

Import and use:

extern crate black_scholes;
let stock = 5.0;
let strike = 4.5;
let rate = 0.01;
let discount = 0.99;
let sigma = 0.3;
let maturity = 2.0;
let sqrt_maturity_sigma = sigma*maturity.sqrt();
let price = black_scholes::call_discount(
    stock, strike, discount,
    sqrt_maturity_sigma
);
//or 
let price = black_scholes::call(
    stock, strike, rate,
    sigma, maturity
);

Dependencies

~1.1–1.8MB
~39K SLoC