Crates.io | blackscholes_python |
lib.rs | blackscholes_python |
version | 0.10.7 |
source | src |
created_at | 2022-11-21 02:02:17.932559 |
updated_at | 2022-11-21 03:03:07.638063 |
description | Black-Scholes option pricing model calculator |
homepage | |
repository | https://github.com/hayden4r4/blackscholes-rust/tree/python_package |
max_upload_size | |
id | 719618 |
size | 23,621 |
This library provides an simple, lightweight, and efficient (though not heavily optimized) implementation of the Black-Scholes-Merton model for pricing European options.
This crate is compilable to a python package using pyo3 and Maturin. It features full doc and type annotations. The rust compiled python package is ~1 second slower in pricing an option to 10M iterations than the pure rust crate on a Ryzen 7600x.
Simply create an instance of the Inputs
struct and call the desired method.
View the Rust docs and Python docs for usage and examples.