optionstratlib 0.17.0

OptionStratLib is a comprehensive Rust library for options trading and strategy development across multiple asset classes.
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
/******************************************************************************
   Author: Joaquín Béjar García
   Email: jb@taunais.com
   Date: 9/2/25
******************************************************************************/
use crate::error::SurfaceError;
use crate::greeks::Greeks;
use crate::model::BasicAxisTypes;
use crate::surfaces::Surface;
use crate::{OptionStyle, Options, Side};
use positive::Positive;
use rust_decimal::Decimal;
use std::sync::Arc;

/// # BasicSurfaces Trait
///
/// This trait defines operations for creating and analyzing option pricing surfaces,
/// which are three-dimensional representations of option metrics across different
/// parameters.
///
/// A surface typically maps option strike prices and volatilities to various
/// option metrics like delta, gamma, theta, vega, or price.
pub trait BasicSurfaces {
    /// Creates a surface visualization based on the specified axis type and option parameters.
    ///
    /// # Parameters
    ///
    /// * `axis` - The option metric to calculate and display on the surface (e.g., Delta, Gamma)
    /// * `option_style` - Whether the options are Calls or Puts
    /// * `volatility` - Optional vector of volatility values to use for surface calculations
    /// * `side` - Whether the options are Long or Short positions
    ///
    /// # Returns
    ///
    /// * `Result<Surface, SurfaceError>` - A constructed surface or an error if creation fails
    ///
    /// # Errors
    ///
    /// Returns [`SurfaceError::ConstructionError`] when the sampling
    /// grid is empty or the requested axis is not available, and
    /// propagates [`SurfaceError::Point3DError`] or
    /// [`SurfaceError::OperationError`] from the per-sample
    /// evaluator.
    fn surface(
        &self,
        axis: &BasicAxisTypes,
        option_style: &OptionStyle,
        volatility: Option<Vec<Positive>>,
        side: &Side,
    ) -> Result<Surface, SurfaceError>;

    /// Calculates the relationship between strike price, implied volatility, and a selected
    /// option metric for a given option.
    ///
    /// This method uses the option's existing implied volatility value to calculate the
    /// desired metric (delta, gamma, theta, vega, vanna, vomma, veta or price).
    ///
    /// # Parameters
    ///
    /// * `axis` - The option metric to calculate (e.g., Delta, Gamma)
    /// * `option` - Reference to the option contract to analyze
    ///
    /// # Returns
    ///
    /// * `Result<(Decimal, Decimal, Decimal), SurfaceError>` - A tuple containing:
    ///   - Strike price
    ///   - Implied volatility
    ///   - Calculated metric value
    ///
    /// # Errors
    ///
    /// Returns a `SurfaceError` if the selected axis is not supported or if any calculation fails.
    fn get_surface_strike_versus(
        &self,
        axis: &BasicAxisTypes,
        option: &Arc<Options>,
    ) -> Result<(Decimal, Decimal, Decimal), SurfaceError> {
        // Create a modified copy of the option with the specified volatility
        let option_with_vol = (**option).clone();

        match axis {
            BasicAxisTypes::Delta => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.delta()?,
            )),
            BasicAxisTypes::Gamma => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.gamma()?,
            )),
            BasicAxisTypes::Theta => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.theta()?,
            )),
            BasicAxisTypes::Vega => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.vega()?,
            )),
            BasicAxisTypes::Vanna => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.vanna()?,
            )),
            BasicAxisTypes::Vomma => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.vomma()?,
            )),
            BasicAxisTypes::Veta => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.veta()?,
            )),
            BasicAxisTypes::Charm => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.charm()?,
            )),
            BasicAxisTypes::Color => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.color()?,
            )),
            BasicAxisTypes::Price => Ok((
                option_with_vol.strike_price.to_dec(),
                option_with_vol.implied_volatility.to_dec(),
                option_with_vol.calculate_price_black_scholes()?,
            )),

            // Catch-all for unsupported combinations
            _ => Err(SurfaceError::OperationError(
                crate::error::OperationErrorKind::InvalidParameters {
                    operation: "get_strike_volatility_versus".to_string(),
                    reason: format!("Axis: {axis:?} not supported"),
                },
            )),
        }
    }

    /// Calculates the relationship between strike price, a specified volatility value, and a selected
    /// option metric for a given option.
    ///
    /// This method uses a custom volatility value (different from the option's current implied volatility)
    /// to calculate the desired metric (delta, gamma, theta, vega, vanna, vomma, veta or price).
    ///
    /// # Parameters
    ///
    /// * `axis` - The option metric to calculate (e.g., Delta, Gamma)
    /// * `option` - Reference to the option contract to analyze
    /// * `volatility` - The specific volatility value to use for the calculation
    ///
    /// # Returns
    ///
    /// * `Result<(Decimal, Decimal, Decimal), SurfaceError>` - A tuple containing:
    ///   - Strike price
    ///   - The provided volatility value
    ///   - Calculated metric value
    ///
    /// # Errors
    ///
    /// Returns a `SurfaceError` if the selected axis is not supported or if any calculation fails.
    fn get_surface_volatility_versus(
        &self,
        axis: &BasicAxisTypes,
        option: &Arc<Options>,
        volatility: Positive,
    ) -> Result<(Decimal, Decimal, Decimal), SurfaceError> {
        // Create a modified copy of the option with the specified volatility
        let mut option_with_vol = (**option).clone();
        option_with_vol.implied_volatility = volatility;
        match axis {
            BasicAxisTypes::Delta => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.delta()?,
            )),
            BasicAxisTypes::Gamma => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.gamma()?,
            )),
            BasicAxisTypes::Theta => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.theta()?,
            )),
            BasicAxisTypes::Vega => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.vega()?,
            )),
            BasicAxisTypes::Vanna => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.vanna()?,
            )),
            BasicAxisTypes::Vomma => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.vomma()?,
            )),
            BasicAxisTypes::Veta => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.veta()?,
            )),
            BasicAxisTypes::Charm => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.charm()?,
            )),
            BasicAxisTypes::Color => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.color()?,
            )),
            BasicAxisTypes::Price => Ok((
                option_with_vol.strike_price.to_dec(),
                volatility.to_dec(),
                option_with_vol.calculate_price_black_scholes()?,
            )),

            // Catch-all for unsupported combinations
            _ => Err(SurfaceError::OperationError(
                crate::error::OperationErrorKind::InvalidParameters {
                    operation: "get_strike_volatility_versus".to_string(),
                    reason: format!("Axis: {axis:?} not supported"),
                },
            )),
        }
    }

    /// Calculates the relationship between strike price, time to expiration, and a selected
    /// option metric for a given option.
    ///
    /// This method modifies the option's expiration date to calculate the desired metric
    /// (veta, charm, theta, or other time-sensitive Greeks) across different time horizons.
    /// This is particularly useful for generating surfaces that show how metrics evolve
    /// as time passes (price vs. time surfaces).
    ///
    /// # Parameters
    ///
    /// * `axis` - The option metric to calculate (e.g., Veta, Charm, Theta)
    /// * `option` - Reference to the option contract to analyze
    /// * `days_to_expiry` - The specific number of days to expiration to use for the calculation
    ///
    /// # Returns
    ///
    /// * `Result<(Decimal, Decimal, Decimal), SurfaceError>` - A tuple containing:
    ///   - Strike price
    ///   - Days to expiration
    ///   - Calculated metric value
    ///
    /// # Errors
    ///
    /// Returns a `SurfaceError` if the selected axis is not supported or if any calculation fails.
    ///
    /// # Example
    ///
    /// ```ignore
    /// use optionstratlib::surfaces::BasicSurfaces;
    /// use optionstratlib::model::BasicAxisTypes;
    /// use positive::pos_or_panic;
    ///
    /// // Generate veta values for different times to expiration
    /// let days_values = vec![pos_or_panic!(7.0), pos_or_panic!(14.0), pos_or_panic!(30.0), pos_or_panic!(60.0), pos_or_panic!(90.0)];
    /// for days in days_values {
    ///     let (strike, time, veta) = surfaces.get_surface_time_versus(
    ///         &BasicAxisTypes::Veta,
    ///         &option,
    ///         days
    ///     )?;
    /// }
    /// ```
    fn get_surface_time_versus(
        &self,
        axis: &BasicAxisTypes,
        option: &Arc<Options>,
        days_to_expiry: Positive,
    ) -> Result<(Decimal, Decimal, Decimal), SurfaceError> {
        use crate::ExpirationDate;

        // Create a modified copy of the option with the specified time to expiration
        let mut option_with_time = (**option).clone();
        option_with_time.expiration_date = ExpirationDate::Days(days_to_expiry);

        match axis {
            BasicAxisTypes::Delta => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.delta()?,
            )),
            BasicAxisTypes::Gamma => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.gamma()?,
            )),
            BasicAxisTypes::Theta => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.theta()?,
            )),
            BasicAxisTypes::Vega => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.vega()?,
            )),
            BasicAxisTypes::Vanna => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.vanna()?,
            )),
            BasicAxisTypes::Vomma => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.vomma()?,
            )),
            BasicAxisTypes::Veta => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.veta()?,
            )),
            BasicAxisTypes::Charm => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.charm()?,
            )),
            BasicAxisTypes::Color => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.color()?,
            )),
            BasicAxisTypes::Price => Ok((
                option_with_time.strike_price.to_dec(),
                days_to_expiry.to_dec(),
                option_with_time.calculate_price_black_scholes()?,
            )),

            // Catch-all for unsupported combinations
            _ => Err(SurfaceError::OperationError(
                crate::error::OperationErrorKind::InvalidParameters {
                    operation: "get_surface_time_versus".to_string(),
                    reason: format!("Axis: {axis:?} not supported"),
                },
            )),
        }
    }

    /// Creates a time-based surface visualization based on the specified axis type and option parameters.
    ///
    /// This method generates a 3D surface where the axes are:
    /// - X: Strike price
    /// - Y: Days to expiration
    /// - Z: The selected metric value (e.g., Veta, Charm, Theta)
    ///
    /// This is particularly useful for visualizing how time-sensitive Greeks like Veta
    /// evolve across different strike prices and time horizons.
    ///
    /// # Parameters
    ///
    /// * `axis` - The option metric to calculate and display on the surface (e.g., Veta, Charm)
    /// * `option_style` - Whether the options are Calls or Puts
    /// * `days_to_expiry` - Vector of days to expiration values to use for surface calculations
    /// * `side` - Whether the options are Long or Short positions
    ///
    /// # Returns
    ///
    /// * `Result<Surface, SurfaceError>` - A constructed surface or an error if creation fails
    ///
    /// # Errors
    ///
    /// Returns [`SurfaceError::ConstructionError`] when no expiration
    /// shift produced a valid grid, and propagates
    /// [`SurfaceError::Point3DError`] or
    /// [`SurfaceError::OperationError`] from the per-sample
    /// evaluator.
    fn time_surface(
        &self,
        axis: &BasicAxisTypes,
        option_style: &OptionStyle,
        days_to_expiry: Vec<Positive>,
        side: &Side,
    ) -> Result<Surface, SurfaceError>;
}

#[cfg(test)]
mod tests_basic_surfaces {
    use super::*;
    use crate::{ExpirationDate, OptionType, assert_decimal_eq};
    use positive::pos_or_panic;
    use rust_decimal_macros::dec;
    use std::sync::Arc;

    // Mock implementation of BasicSurfaces for testing
    struct MockBasicSurfaces;

    impl BasicSurfaces for MockBasicSurfaces {
        fn surface(
            &self,
            _axis: &BasicAxisTypes,
            _option_style: &OptionStyle,
            _volatility: Option<Vec<Positive>>,
            _side: &Side,
        ) -> Result<Surface, SurfaceError> {
            Ok(Surface::default())
        }

        fn time_surface(
            &self,
            _axis: &BasicAxisTypes,
            _option_style: &OptionStyle,
            _days_to_expiry: Vec<Positive>,
            _side: &Side,
        ) -> Result<Surface, SurfaceError> {
            Ok(Surface::default())
        }
    }

    // Helper function to create a test option
    fn create_test_option() -> Arc<Options> {
        Arc::new(Options::new(
            OptionType::European,
            Side::Long,
            "TEST".to_string(),
            Positive::HUNDRED, // strike_price
            ExpirationDate::Days(pos_or_panic!(30.0)),
            pos_or_panic!(0.2), // implied_volatility
            Positive::ONE,      // quantity
            Positive::HUNDRED,  // underlying_price
            dec!(0.05),         // risk_free_rate
            OptionStyle::Call,
            pos_or_panic!(0.01), // dividend_yield
            None,
        ))
    }

    #[test]
    fn test_get_strike_versus_delta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Delta, &option);

        assert!(result.is_ok());
        let (strike, vol, delta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(delta >= dec!(-1.0) && delta <= dec!(1.0));
    }

    #[test]
    fn test_get_strike_versus_gamma() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Gamma, &option);

        assert!(result.is_ok());
        let (strike, vol, gamma) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(gamma >= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_theta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Theta, &option);

        assert!(result.is_ok());
        let (strike, vol, theta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(theta <= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_vega() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Vega, &option);

        assert!(result.is_ok());
        let (strike, vol, vega) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(vega >= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_vanna() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Vanna, &option);

        assert!(result.is_ok());
        let (strike, vol, vanna) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(vanna <= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_vomma() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Vomma, &option);

        assert!(result.is_ok());
        let (strike, vol, vomma) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(vomma >= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_veta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Veta, &option);

        assert!(result.is_ok());
        let (strike, vol, veta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(veta >= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_charm() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Charm, &option);

        assert!(result.is_ok());
        let (strike, vol, charm) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(charm <= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_color() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Color, &option);

        assert!(result.is_ok());
        let (strike, vol, color) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.2));
        assert!(color <= dec!(0.0));
    }

    #[test]
    fn test_get_strike_versus_invalid_axis() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        let result = surfaces.get_surface_strike_versus(&BasicAxisTypes::Strike, &option);

        assert!(result.is_err());
        match result {
            Err(SurfaceError::OperationError(error)) => {
                assert!(error.to_string().contains("not supported"));
            }
            _ => panic!("Expected OperationError"),
        }
    }

    #[test]
    fn test_get_volatility_versus_with_custom_volatility() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.3);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Delta, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, delta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.3));
        assert!(delta >= dec!(-1.0) && delta <= dec!(1.0));

        let result = surfaces.get_surface_volatility_versus(
            &BasicAxisTypes::Volatility,
            &option,
            custom_vol,
        );
        assert!(result.is_err());
        let err = result.unwrap_err();
        assert!(matches!(err, SurfaceError::OperationError(_)));
    }

    #[test]
    fn test_get_volatility_versus_price() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.25);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Price, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, price) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.25));
        assert!(price > dec!(0.0));
    }

    #[test]
    fn test_get_volatility_versus_theta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.15);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Theta, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, theta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.15));
        assert!(theta <= dec!(0.0)); // Theta should be negative or zero
    }

    #[test]
    fn test_get_volatility_versus_gamma() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.15);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Gamma, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, gamma) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.15));
        assert!(gamma >= dec!(0.0));
    }

    #[test]
    fn test_get_volatility_versus_vega() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.4);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Vega, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, vega) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.4));
        assert!(vega >= dec!(0.0)); // Vega should be positive
    }

    #[test]
    fn test_get_volatility_versus_vanna() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.4);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Vanna, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, vanna) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.4));
        assert!(vanna >= dec!(0.0));
    }

    #[test]
    fn test_get_volatility_versus_vomma() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.4);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Vomma, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, vomma) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.4));
        assert!(vomma <= dec!(0.0));
    }

    #[test]
    fn test_get_volatility_versus_veta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.4);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Veta, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, veta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.4));
        assert!(veta >= dec!(0.0));
    }

    #[test]
    fn test_get_volatility_versus_charm() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.4);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Charm, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, charm) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.4));
        assert_decimal_eq!(charm, dec!(-0.000506), dec!(0.000001));
    }

    #[test]
    fn test_get_volatility_versus_color() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let custom_vol = pos_or_panic!(0.4);

        let result =
            surfaces.get_surface_volatility_versus(&BasicAxisTypes::Color, &option, custom_vol);

        assert!(result.is_ok());
        let (strike, vol, color) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(vol, dec!(0.4));
        assert_decimal_eq!(color, dec!(-0.000582), dec!(0.000001));
    }

    #[test]
    fn test_compare_strike_and_volatility_versus() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let vol = option.implied_volatility;

        let strike_result = surfaces
            .get_surface_strike_versus(&BasicAxisTypes::Delta, &option)
            .unwrap();
        let vol_result = surfaces
            .get_surface_volatility_versus(&BasicAxisTypes::Delta, &option, vol)
            .unwrap();

        // Both methods should return the same results when using the same volatility
        assert_eq!(strike_result.0, vol_result.0); // Strike
        assert_eq!(strike_result.1, vol_result.1); // Volatility
        assert_eq!(strike_result.2, vol_result.2); // Delta
    }

    #[test]
    fn test_get_time_versus_veta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Veta, &option, days);

        assert!(result.is_ok());
        let (strike, time, veta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
        // Veta should be a small positive or negative value
        assert!(veta.abs() < dec!(1.0));
    }

    #[test]
    fn test_get_time_versus_charm() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Charm, &option, days);

        assert!(result.is_ok());
        let (strike, time, charm) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
        // Charm should be a small value
        assert!(charm.abs() < dec!(1.0));
    }

    #[test]
    fn test_get_time_versus_color() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Color, &option, days);

        assert!(result.is_ok());
        let (strike, time, color) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
        // Color should be a small value
        assert!(color.abs() < dec!(1.0));
    }

    #[test]
    fn test_get_time_versus_theta() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Theta, &option, days);

        assert!(result.is_ok());
        let (strike, time, theta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
        // Theta should be negative for long options
        assert!(theta <= dec!(0.0));
    }

    #[test]
    fn test_get_time_versus_vanna() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Vanna, &option, days);

        assert!(result.is_ok());
        let (strike, time, _vanna) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
    }

    #[test]
    fn test_get_time_versus_vomma() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Vomma, &option, days);

        assert!(result.is_ok());
        let (strike, time, _vomma) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
    }

    #[test]
    fn test_get_time_versus_invalid_axis() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Strike, &option, days);

        assert!(result.is_err());
        match result {
            Err(SurfaceError::OperationError(error)) => {
                assert!(error.to_string().contains("not supported"));
            }
            _ => panic!("Expected OperationError"),
        }
    }

    #[test]
    fn test_get_time_versus_different_times() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();

        // Test with different time horizons
        let times = vec![
            pos_or_panic!(7.0),
            pos_or_panic!(14.0),
            pos_or_panic!(30.0),
            pos_or_panic!(60.0),
            pos_or_panic!(90.0),
        ];

        for days in times {
            let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Veta, &option, days);
            assert!(result.is_ok());
            let (_, time, _) = result.unwrap();
            assert_eq!(time, days.to_dec());
        }
    }

    #[test]
    fn test_get_time_versus_near_expiration() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = Positive::ONE; // Near expiration

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Veta, &option, days);

        assert!(result.is_ok());
        let (strike, time, _veta) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(1.0));
    }

    #[test]
    fn test_get_time_versus_price() {
        let surfaces = MockBasicSurfaces;
        let option = create_test_option();
        let days = pos_or_panic!(30.0);

        let result = surfaces.get_surface_time_versus(&BasicAxisTypes::Price, &option, days);

        assert!(result.is_ok());
        let (strike, time, price) = result.unwrap();
        assert_eq!(strike, dec!(100.0));
        assert_eq!(time, dec!(30.0));
        assert!(price > dec!(0.0));
    }
}