RustyQLib 0.0.3

RustyQLib is a lightweight yet robust quantitative finance library designed to price derivatives and perform risk analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(PartialEq,Debug,Clone)]
pub enum Transection {
    Buy,
    Sell,
}

#[derive(PartialEq, Eq, Debug, Clone, Copy)]
pub enum PutOrCall {
    Call,
    Put,

}