RustQuant_instruments 0.3.1

A Rust library for quantitative finance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// RustQuant: A Rust library for quantitative finance tools.
// Copyright (C) 2023 https://github.com/avhz
// Dual licensed under Apache 2.0 and MIT.
// See:
//      - LICENSE-APACHE.md
//      - LICENSE-MIT.md
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// IMPORTS
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

use super::{
    Asay82, Black76, BlackScholes73, GarmanKohlhagen83, GeneralisedBlackScholesMerton, Merton73,
    TypeFlag,
};
use super::{Bachelier, Heston93};
use crate::AnalyticOptionPricer;
use crate::Payoff;
use derive_builder::Builder;
use time::Date;
use RustQuant_time::{today, year_fraction};

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// STRUCTS
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

/// European vanilla option.
#[derive(Debug, Clone, Builder, Copy)]
pub struct EuropeanVanillaOption {
    /// The strike price of the option.
    pub strike: f64,

    /// The expiry date of the option.
    pub expiry: Date,

    /// The type of the option (call or put).
    pub type_flag: TypeFlag,
}

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// IMPLEMENTATIONS
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

impl Payoff for EuropeanVanillaOption {
    type Underlying = f64;

    fn payoff(&self, underlying: Self::Underlying) -> f64 {
        match self.type_flag {
            TypeFlag::Call => (underlying - self.strike).max(0.0),
            TypeFlag::Put => (self.strike - underlying).max(0.0),
        }
    }
}

impl EuropeanVanillaOption {
    /// Create a new vanilla option.
    pub fn new(strike: f64, expiry: Date, type_flag: TypeFlag) -> Self {
        Self {
            strike,
            expiry,
            type_flag,
        }
    }
}

macro_rules! european_vanilla_option_gbsm {
    ($gbsm_variant:ident) => {
        impl AnalyticOptionPricer<EuropeanVanillaOption, $gbsm_variant> {
            /// Print a report of the option price and greeks.
            pub fn report(&self) {
                use std::collections::HashMap;

                let map = HashMap::from([
                    ("price", self.price()),
                    ("delta", self.delta()),
                    ("gamma", self.gamma()),
                    ("theta", self.theta()),
                    ("vega", self.vega()),
                    ("rho", self.rho()),
                    ("vanna", self.vanna()),
                    ("charm", self.charm()),
                    ("lambda", self.lambda()),
                    ("zomma", self.zomma()),
                    ("speed", self.speed()),
                    ("color", self.color()),
                    ("vomma", self.vomma()),
                    ("ultima", self.ultima()),
                ]);

                println!("Model: {:?}", self.model);
                println!("Option: {:?}", self.option);
                println!("{:#?}", map);
                println!();
            }

            /// Calculate the price of the option.
            pub fn price(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.price(k, t, f)
            }

            /// Calculate the delta of the option.
            pub fn delta(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.delta(k, t, f)
            }

            /// Calculate the gamma of the option.
            pub fn gamma(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.gamma(k, t, f)
            }

            /// Calculate the theta of the option.
            pub fn theta(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.theta(k, t, f)
            }

            /// Calculate the vega of the option.
            pub fn vega(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.vega(k, t, f)
            }

            /// Calculate the rho of the option.
            pub fn rho(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.rho(k, t, f)
            }

            /// Calculate the vanna of the option.
            pub fn vanna(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.vanna(k, t, f)
            }

            /// Calculate the charm of the option.
            pub fn charm(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.charm(k, t, f)
            }

            /// Calculate the lambda of the option.
            pub fn lambda(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.lambda(k, t, f)
            }

            /// Calculate the zomma of the option.
            pub fn zomma(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.zomma(k, t, f)
            }

            /// Calculate the speed of the option.
            pub fn speed(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.speed(k, t, f)
            }

            /// Calculate the color of the option.
            pub fn color(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.color(k, t, f)
            }

            /// Calculate the vomma of the option.
            pub fn vomma(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.vomma(k, t, f)
            }

            /// Calculate the ultima of the option.
            pub fn ultima(&self) -> f64 {
                let k = self.option.strike;
                let t = year_fraction(today(), self.option.expiry);
                let f = self.option.type_flag;

                self.model.ultima(k, t, f)
            }
        }
    };
}

european_vanilla_option_gbsm!(BlackScholes73);
european_vanilla_option_gbsm!(Merton73);
european_vanilla_option_gbsm!(Black76);
european_vanilla_option_gbsm!(Asay82);
european_vanilla_option_gbsm!(GarmanKohlhagen83);

impl AnalyticOptionPricer<EuropeanVanillaOption, Heston93> {
    /// Calculate the price of the option.
    pub fn price(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.price(k, t, f)
    }

    /// Calculate the delta of the option.
    pub fn delta(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.delta(k, t, f)
    }

    /// Calculate the gamma of the option.
    pub fn gamma(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.gamma(k, t, f)
    }

    /// Calculate the rho of the option.
    pub fn rho(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.rho(k, t, f)
    }

    /// Print a report of the option price and greeks.
    pub fn report(&self) {
        use std::collections::HashMap;

        let map = HashMap::from([
            ("price", self.price()),
            ("delta", self.delta()),
            ("gamma", self.gamma()),
            ("rho", self.rho()),
        ]);

        println!("Model: {:?}", self.model);
        println!("Option: {:?}", self.option);
        println!("{:#?}", map);
        println!();
    }
}

impl AnalyticOptionPricer<EuropeanVanillaOption, Bachelier> {
    /// Calculate the price of the option.
    pub fn price(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.price(k, t, f)
    }

    /// Calculate the atm price of the option.
    pub fn atm_price(&self) -> f64 {
        let t = year_fraction(today(), self.option.expiry);

        self.model.atm_price(t)
    }

    /// Calculate the atm vol of the option.
    pub fn atm_vol(&self, price: f64) -> f64 {
        let t = year_fraction(today(), self.option.expiry);

        self.model.atm_vol(price, t)
    }

    /// Calculate the implied volatility of the option.
    pub fn iv(&self, price: f64) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.iv(price, k, t, f)
    }

    /// Calculate the delta of the option.
    pub fn delta(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.delta(k, t, f)
    }

    /// Calculate the gamma of the option.
    pub fn gamma(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.gamma(k, t, f)
    }

    /// Calculate the theta of the option.
    pub fn theta(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.theta(k, t, f)
    }

    /// Calculate the vega of the option.
    pub fn vega(&self) -> f64 {
        let k = self.option.strike;
        let t = year_fraction(today(), self.option.expiry);
        let f = self.option.type_flag;

        self.model.vega(k, t, f)
    }

    /// Print a report of the option price and greeks.
    pub fn report(&self) {
        use std::collections::HashMap;

        let map = HashMap::from([
            ("price", self.price()),
            ("atm_price", self.atm_price()),
            ("delta", self.delta()),
            ("gamma", self.gamma()),
            ("theta", self.theta()),
            ("vega", self.vega()),
        ]);

        println!("Model: {:?}", self.model);
        println!("Option: {:?}", self.option);
        println!("{:#?}", map);
        println!();
    }
}

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// TESTS
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#[cfg(test)]
mod test_vanilla_option_monte_carlo {
    use super::*;
    use crate::AsianOption;
    use crate::AveragingMethod;
    use crate::MonteCarloPricer;
    use crate::StrikeFlag;
    use crate::{ExerciseFlag, OptionContractBuilder};
    use std::time::Instant;
    use time::macros::date;
    use RustQuant_stochastics::geometric_brownian_motion::GeometricBrownianMotion;
    use RustQuant_stochastics::StochasticProcessConfig;

    #[test]
    fn test_vanilla_option_monte_carlo() {
        let underlying = 100.0;
        let strike = 100.0;
        let interest_rate = 0.05;
        let time_to_maturity = 1.0;
        let volatility = 0.2;
        let expiry = date!(2025 - 01 - 01);

        // let contract = OptionContractBuilder::default()
        //     .type_flag(TypeFlag::Call)
        //     .exercise_flag(ExerciseFlag::European { expiry })
        //     .build()
        //     .unwrap();

        let option = EuropeanVanillaOption::new(strike, expiry, TypeFlag::Call);
        let process = GeometricBrownianMotion::new(interest_rate, volatility);

        let config =
            StochasticProcessConfig::new(underlying, 0.0, time_to_maturity, 1, 1_000_000, true);

        let start = Instant::now();
        let price = option.price_monte_carlo(&process, &config, interest_rate);
        println!("Elapsed time: {:?}", start.elapsed());

        println!("Price: {}", price);
    }

    #[test]
    fn test_asian_option_monte_carlo() {
        let underlying = 100.0;
        let strike = 100.0;
        let interest_rate = 0.05;
        let time_to_maturity = 1.0;
        let volatility = 0.2;
        let expiry = date!(2025 - 01 - 01);
        let direction = TypeFlag::Call;
        let exercise = ExerciseFlag::European { expiry };
        let strike_flag = Some(StrikeFlag::Fixed);

        let contract = OptionContractBuilder::default()
            .type_flag(direction)
            .exercise_flag(exercise)
            .strike_flag(strike_flag)
            .build()
            .unwrap();

        let option = AsianOption::new(contract, AveragingMethod::ArithmeticDiscrete, Some(strike));
        let process = GeometricBrownianMotion::new(interest_rate, volatility);

        let config =
            StochasticProcessConfig::new(underlying, 0.0, time_to_maturity, 1000, 1000, true);

        let start = Instant::now();
        let price = option.price_monte_carlo(&process, &config, interest_rate);
        println!("Elapsed time: {:?}", start.elapsed());

        println!("Price: {}", price);
    }
}