optionstratlib 0.16.2

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
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
/******************************************************************************
   Author: Joaquín Béjar García
   Email: jb@taunais.com
   Date: 23/2/25
******************************************************************************/
// Scoped allow: bulk migration of unchecked `[]` indexing to
// `.get().ok_or_else(..)` tracked as follow-ups to #341. The existing
// call sites are internal to this file and audited for invariant-bound
// indices (fixed-length buffers, just-pushed slices, etc.).
#![allow(clippy::indexing_slicing)]

use crate::curves::{Curve, Point2D};
use crate::error::{CurveError, OperationErrorKind};
use crate::geometrics::{BasicMetrics, MetricsExtractor, RangeMetrics, ShapeMetrics, TrendMetrics};
use num_traits::ToPrimitive;
use rand::rngs::StdRng;
use rand::{RngExt, SeedableRng};
use rust_decimal::Decimal;
use statrs::distribution::{ContinuousCDF, Normal};
use std::collections::BTreeSet;
use tracing::error;

/// A trait that defines the behavior of any object that can produce a curve representation.
///
/// Types implementing the `Curvable` trait must provide the `curve` method, which generates
/// a `Curve` object based on the internal state of the implementer. This method returns
/// a `Result`, allowing for proper error handling in situations where the curve
/// cannot be generated due to various issues (e.g., invalid data or computation errors).
///
/// # Method
///
/// - `curve`
///   - **Returns**:
///     - A `Result` containing:
///       - `Curve`: On success, a valid representation of the curve.
///       - `CurveError`: On failure, detailed information about why the curve could not be generated.
///
/// # Error Handling
///
/// Given the reliance on precise data and operations, the `Curvable` trait integrates
/// tightly with the `CurveError` type to handle potential issues, such as:
/// - Invalid points or coordinates (`Point2DError`)
/// - Issues in curve construction (`ConstructionError`)
/// - Errors during interpolation (`InterpolationError`)
/// - General computation or operational failures (`OperationError`, `StdError`)
///
/// # Example Usage
///
/// This trait forms the basis for creating highly customizable and precise curve objects,
/// ensuring compatibility with mathematical, computational, or graphical operations.
///
/// Implementing this trait allows an object to seamlessly interact with the higher-level
/// functionalities in the `curves` module, such as visualization, analysis, and transformation.
///
/// # See Also
/// - [`Curve`]: Represents the mathematical curve generated by this trait.
/// - [`CurveError`]: Error type encapsulating issues encountered during curve generation.
pub trait Curvable {
    /// Generates a `Curve` representation of the implementer.
    ///
    /// The `curve` method is the core functionality of this trait. It is expected
    /// to compute and return a `Curve` object that accurately describes the
    /// implementer's structure or state in the context of a two-dimensional curve.
    ///
    /// # Returns
    ///
    /// - `Ok(Curve)`: When the curve is successfully generated.
    /// - `Err(CurveError)`: If curve generation fails for any reason.
    ///
    /// # Errors
    ///
    /// The method may return a `CurveError` in scenarios such as:
    /// - **Point2DError**: If an invalid or missing 2D point is encountered.
    /// - **ConstructionError**: When the curve cannot be initialized due to invalid input.
    /// - **InterpolationError**: If there are issues during interpolation of the curve's points.
    /// - **AnalysisError**: In cases where analytical operations on the curve fail.
    ///
    /// This ensures robust error handling for downstream processes and applications.
    fn curve(&self) -> Result<Curve, CurveError>;
}

/// A trait for generating statistical curves based on metrics
///
/// This trait provides methods to generate curves that match specified
/// statistical properties. It extends the `MetricsExtractor` trait to
/// ensure implementing types can both extract and generate metrics.
pub trait StatisticalCurve: MetricsExtractor {
    /// Retrieves the x-axis values for the statistical curve.
    ///
    /// This method returns a vector of `Decimal` values representing the x-coordinates
    /// of the points that define the curve. These x-values are essential for plotting
    /// the curve and performing various statistical analyses.
    ///
    /// # Returns
    ///
    /// A `Vec<Decimal>` containing the x-values of the statistical curve. Each `Decimal`
    /// represents a point on the x-axis.
    fn get_x_values(&self) -> Vec<Decimal>;

    /// Generates a statistical curve with properties that match the provided metrics.
    ///
    /// # Overview
    /// This function creates a curve with statistical properties that approximate the
    /// specified metrics. It uses a combination of normal distribution sampling and
    /// transformations to achieve the desired statistical characteristics.
    ///
    /// # Parameters
    /// - `basic_metrics`: Basic statistical properties like mean, median, mode, and standard deviation.
    /// - `shape_metrics`: Shape-related metrics like skewness and kurtosis.
    /// - `range_metrics`: Range information including min, max, and quartile data.
    /// - `trend_metrics`: Trend information including slope and intercept for linear trend.
    /// - `num_points`: Number of points to generate in the curve.
    /// - `seed`: Optional random seed for reproducible curve generation.
    ///
    /// # Returns
    /// - `Result<Curve, CurveError>`: A curve matching the specified statistical properties,
    ///   or an error if generation fails.
    ///
    /// # Errors
    ///
    /// Returns [`CurveError::ConstructionError`] when the requested
    /// combination of basic, shape and range-parameter metrics is
    /// infeasible (e.g. negative variance, inconsistent quantiles), and
    /// propagates [`CurveError::MetricsError`] when the per-sample
    /// metric evaluation fails.
    fn generate_statistical_curve(
        &self,
        basic_metrics: &BasicMetrics,
        shape_metrics: &ShapeMetrics,
        range_metrics: &RangeMetrics,
        trend_metrics: &TrendMetrics,
        num_points: usize,
        seed: Option<u64>,
    ) -> Result<Curve, CurveError> {
        if num_points < 2 {
            return Err(CurveError::OperationError(
                OperationErrorKind::InvalidParameters {
                    operation: "generate_statistical_curve".to_string(),
                    reason: "Number of points must be at least 2".to_string(),
                },
            ));
        }
        // Initialize random number generator with optional seed
        let seed_value = seed.unwrap_or_else(rand::random);
        let mut rng = StdRng::seed_from_u64(seed_value);
        // Create a normal distribution with the given mean and standard deviation

        let mut y_values: Vec<f64> = if basic_metrics.std_dev != Decimal::ZERO {
            let normal = Normal::new(
                basic_metrics.mean.to_f64().unwrap_or(0.0),
                basic_metrics.std_dev.to_f64().unwrap_or(1.0),
            )
            .map_err(|e| {
                error!(
                    "Failed to create normal distribution with mean {} and std_dev {}: {}",
                    basic_metrics.mean, basic_metrics.std_dev, e
                );
                CurveError::MetricsError(e.to_string())
            })?;

            // Generate initial y-values from the normal distribution
            (0..num_points)
                .map(|_| {
                    let u: f64 = rng.random_range(0.0..1.0); // Generate a value between 0 and 1
                    normal.inverse_cdf(u) // Convert to normal distribution using inverse CDF
                })
                .collect()
        } else {
            vec![basic_metrics.mean.to_f64().unwrap_or(0.0); num_points]
        };

        // Apply transformations to match skewness and kurtosis (simplified approach)
        let skewness = shape_metrics.skewness.to_f64().unwrap_or(0.0);
        let kurtosis = shape_metrics.kurtosis.to_f64().unwrap_or(0.0);

        // Apply skewness transformation (simplified approach)
        if skewness.abs() > 0.01 {
            for y in &mut y_values {
                // Apply a simple transformation to induce skewness
                *y += skewness * (*y - basic_metrics.mean.to_f64().unwrap_or(0.0)).powi(2);
            }
        }

        // Apply kurtosis transformation (simplified approach)
        if kurtosis.abs() > 0.01 {
            for y in &mut y_values {
                // Apply a simple transformation to adjust kurtosis
                let z = (*y - basic_metrics.mean.to_f64().unwrap_or(0.0))
                    / basic_metrics.std_dev.to_f64().unwrap_or(1.0);
                *y += kurtosis * 0.1 * z.powi(3);
            }
        }

        let x_values: Vec<Decimal> = self.get_x_values();

        // Apply trend (slope and intercept)
        let slope = trend_metrics.slope.to_f64().unwrap_or(0.0);
        if slope.abs() > 0.001 {
            let intercept = trend_metrics.intercept.to_f64().unwrap_or(0.0);
            for i in 0..y_values.len() {
                let x_f = x_values[i].to_f64().ok_or_else(|| {
                    CurveError::invalid_parameters(
                        "to_f64",
                        "Decimal out of range / non-representable as f64 in regression x-input",
                    )
                })?;
                y_values[i] += slope * x_f + intercept;
            }
        }

        // Scale y-values to match the range
        let current_min = y_values.iter().cloned().fold(f64::INFINITY, f64::min);
        let current_max = y_values.iter().cloned().fold(f64::NEG_INFINITY, f64::max);
        let current_range = current_max - current_min;

        let target_min = range_metrics.min.y.to_f64().unwrap_or(0.0);
        let target_max = range_metrics.max.y.to_f64().unwrap_or(1.0);
        let target_range = target_max - target_min;

        // Scale and shift the y-values to match the target range
        if current_range > 0.0 {
            for y in &mut y_values {
                *y = ((*y - current_min) / current_range) * target_range + target_min;
            }
        }

        // Ensure mode value is included
        if num_points > 3 {
            let index = rng.random_range(0..(num_points / 3));
            y_values[index] = basic_metrics.mode.to_f64().unwrap_or(y_values[index]);
        }

        // Create points and construct curve
        let mut points = BTreeSet::new();
        for i in 0..num_points {
            let x_f = x_values[i].to_f64().ok_or_else(|| {
                CurveError::invalid_parameters(
                    "to_f64",
                    "Decimal out of range / non-representable as f64 in regression x-input",
                )
            })?;
            let point = Point2D::from_f64_tuple(x_f, y_values[i])?;
            points.insert(point);
        }

        // Create the curve
        Ok(Curve::new(points))
    }

    /// Generates a refined statistical curve that iteratively adjusts to better match
    /// the target metrics.
    ///
    /// This method extends the basic curve generation by performing multiple attempts
    /// with adjusted parameters until the resulting curve metrics are within the specified
    /// tolerance of the target metrics.
    ///
    /// # Parameters
    /// - `basic_metrics`: Target basic statistical metrics
    /// - `shape_metrics`: Target shape metrics
    /// - `range_metrics`: Target range metrics
    /// - `trend_metrics`: Target trend metrics
    /// - `num_points`: Number of points to generate
    /// - `max_attempts`: Maximum number of generation attempts (default: 5)
    /// - `tolerance`: Acceptable difference between target and actual metrics (default: 0.1)
    /// - `seed`: Optional random seed for reproducibility
    ///
    /// # Returns
    /// - `Result<Curve, CurveError>`: The generated curve or an error
    ///
    /// # Errors
    ///
    /// Same failure surface as
    /// [`StatisticalCurve::generate_statistical_curve`], plus
    /// [`CurveError::ConstructionError`] when the refinement loop
    /// exhausts its iteration budget without matching the tolerance.
    #[allow(clippy::too_many_arguments)]
    fn generate_refined_statistical_curve(
        &self,
        basic_metrics: &BasicMetrics,
        shape_metrics: &ShapeMetrics,
        range_metrics: &RangeMetrics,
        trend_metrics: &TrendMetrics,
        num_points: usize,
        max_attempts: usize,
        tolerance: Decimal,
        seed: Option<u64>,
    ) -> Result<Curve, CurveError> {
        let max_tries = if max_attempts == 0 { 5 } else { max_attempts };
        let mut seed_value = seed.unwrap_or_else(rand::random);

        for _ in 0..max_tries {
            let curve = self.generate_statistical_curve(
                basic_metrics,
                shape_metrics,
                range_metrics,
                trend_metrics,
                num_points,
                Some(seed_value),
            )?;

            if self.verify_curve_metrics(&curve, basic_metrics, tolerance)? {
                return Ok(curve);
            }

            // Try a different seed for the next attempt
            seed_value = seed_value.wrapping_add(1);
        }

        // Return the last generated curve even if it doesn't perfectly match
        self.generate_statistical_curve(
            basic_metrics,
            shape_metrics,
            range_metrics,
            trend_metrics,
            num_points,
            Some(seed_value),
        )
    }

    /// Verifies if the metrics of the generated curve match the target metrics
    /// within the specified tolerance.
    ///
    /// # Parameters
    /// - `curve`: The curve to verify
    /// - `target_metrics`: The target basic metrics to compare against
    /// - `tolerance`: Maximum acceptable difference between actual and target metrics
    ///
    /// # Returns
    /// - `Result<bool, CurveError>`: True if metrics match within tolerance, false otherwise
    ///
    /// # Errors
    ///
    /// Propagates any [`CurveError::MetricsError`] or
    /// [`CurveError::ConstructionError`] raised while recomputing the
    /// curve's actual metrics (typically when the curve contains
    /// non-finite samples or lacks the density required for the
    /// requested metric).
    fn verify_curve_metrics(
        &self,
        curve: &Curve,
        target_metrics: &BasicMetrics,
        tolerance: Decimal,
    ) -> Result<bool, CurveError> {
        let actual_metrics = curve
            .compute_basic_metrics()
            .map_err(|e| CurveError::MetricsError(format!("Failed to compute metrics: {e}")))?;

        // Check if the key metrics are within tolerance
        let mean_diff = (actual_metrics.mean - target_metrics.mean).abs();
        let std_dev_diff = (actual_metrics.std_dev - target_metrics.std_dev).abs();

        Ok(mean_diff <= tolerance && std_dev_diff <= tolerance)
    }
}

#[cfg(test)]
mod tests_statistical_curve {
    use super::*;
    use crate::error::MetricsError;
    use crate::geometrics::RiskMetrics;
    use crate::utils::Len;
    use rust_decimal_macros::dec;
    use std::collections::BTreeSet;

    // A simple struct that implements StatisticalCurve trait for testing
    struct TestCurveGenerator;

    impl Len for TestCurveGenerator {
        fn len(&self) -> usize {
            unreachable!()
        }
    }

    impl MetricsExtractor for TestCurveGenerator {
        fn compute_basic_metrics(&self) -> Result<BasicMetrics, MetricsError> {
            // Return default metrics for testing
            Ok(BasicMetrics {
                mean: dec!(0.0),
                median: dec!(0.0),
                mode: dec!(0.0),
                std_dev: dec!(1.0),
            })
        }

        fn compute_shape_metrics(&self) -> Result<ShapeMetrics, MetricsError> {
            Ok(ShapeMetrics {
                skewness: dec!(0.0),
                kurtosis: dec!(0.0),
                peaks: vec![],
                valleys: vec![],
                inflection_points: vec![],
            })
        }

        fn compute_range_metrics(&self) -> Result<RangeMetrics, MetricsError> {
            Ok(RangeMetrics {
                min: Point2D::new(dec!(0.0), dec!(0.0)),
                max: Point2D::new(dec!(10.0), dec!(10.0)),
                range: dec!(10.0),
                quartiles: (dec!(2.5), dec!(5.0), dec!(7.5)),
                interquartile_range: dec!(5.0),
            })
        }

        fn compute_trend_metrics(&self) -> Result<TrendMetrics, MetricsError> {
            Ok(TrendMetrics {
                slope: dec!(0.0),
                intercept: dec!(0.0),
                r_squared: dec!(0.0),
                moving_average: vec![],
            })
        }

        fn compute_risk_metrics(&self) -> Result<RiskMetrics, MetricsError> {
            unreachable!()
        }
    }

    impl StatisticalCurve for TestCurveGenerator {
        fn get_x_values(&self) -> Vec<Decimal> {
            (0..10).map(Decimal::from).collect()
        }
    }

    // Create a struct that implements Curve's compute_basic_metrics for testing
    impl Curvable for TestCurveGenerator {
        fn curve(&self) -> Result<Curve, CurveError> {
            // Create a simple linear curve
            let points: BTreeSet<Point2D> = (0..10)
                .map(|i| Point2D::new(Decimal::from(i), Decimal::from(i)))
                .collect();
            Ok(Curve::new(points))
        }
    }

    #[test]
    fn test_get_x_values() {
        let generator = TestCurveGenerator;
        let x_values = generator.get_x_values();

        assert_eq!(x_values.len(), 10);
        assert_eq!(x_values[0], dec!(0));
        assert_eq!(x_values[9], dec!(9));
    }

    #[test]
    fn test_generate_statistical_curve_invalid_points() {
        let generator = TestCurveGenerator;

        let basic_metrics = BasicMetrics::default();
        let shape_metrics = ShapeMetrics::default();
        let range_metrics = RangeMetrics::default();
        let trend_metrics = TrendMetrics::default();

        // Test with less than 2 points
        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            1, // Invalid: less than 2 points
            None,
        );

        assert!(result.is_err());
        if let Err(CurveError::OperationError(OperationErrorKind::InvalidParameters {
            operation,
            reason,
        })) = result
        {
            assert_eq!(operation, "generate_statistical_curve");
            assert!(reason.contains("Number of points must be at least 2"));
        } else {
            panic!("Expected InvalidParameters error");
        }
    }

    #[test]
    fn test_verify_curve_metrics() {
        let generator = TestCurveGenerator;

        // Create a simple curve
        let curve = generator.curve().unwrap();

        // Define target metrics close to the actual metrics
        let target_metrics = BasicMetrics {
            mean: dec!(4.5), // Close to actual mean (4.5 for points 0..9)
            median: dec!(4.5),
            mode: dec!(0.0),
            std_dev: dec!(3.0), // Close to actual std_dev
        };

        // Verify with a generous tolerance
        let result = generator.verify_curve_metrics(&curve, &target_metrics, dec!(1.0));
        assert!(result.is_ok());
        assert!(result.unwrap());

        // Verify with a strict tolerance that should fail
        let result = generator.verify_curve_metrics(&curve, &target_metrics, dec!(0.1));
        assert!(result.is_ok());
        // This might fail depending on the actual metrics of the curve
    }

    // Test Default implementation for the required metrics structs
    impl Default for BasicMetrics {
        fn default() -> Self {
            Self {
                mean: dec!(0.0),
                median: dec!(0.0),
                mode: dec!(0.0),
                std_dev: dec!(1.0),
            }
        }
    }

    impl Default for ShapeMetrics {
        fn default() -> Self {
            Self {
                skewness: dec!(0.0),
                kurtosis: dec!(0.0),
                peaks: vec![],
                valleys: vec![],
                inflection_points: vec![],
            }
        }
    }

    impl Default for RangeMetrics {
        fn default() -> Self {
            Self {
                min: Point2D::new(dec!(0.0), dec!(0.0)),
                max: Point2D::new(dec!(10.0), dec!(10.0)),
                range: dec!(10.0),
                quartiles: (dec!(2.5), dec!(5.0), dec!(7.5)),
                interquartile_range: dec!(5.0),
            }
        }
    }

    impl Default for TrendMetrics {
        fn default() -> Self {
            Self {
                slope: dec!(0.0),
                intercept: dec!(0.0),
                r_squared: dec!(0.0),
                moving_average: vec![],
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::error::MetricsError;
    use crate::geometrics::RiskMetrics;
    use crate::utils::Len;
    use rust_decimal::Decimal;
    use rust_decimal_macros::dec;
    use std::collections::BTreeSet;

    struct MockCurvable {
        points: BTreeSet<Point2D>,
        should_fail: bool,
    }

    impl MockCurvable {
        fn new(should_fail: bool) -> Self {
            let mut points = BTreeSet::new();

            if !should_fail {
                // Create some valid points
                points.insert(Point2D::new(dec!(1.0), dec!(2.0)));
                points.insert(Point2D::new(dec!(2.0), dec!(3.0)));
                points.insert(Point2D::new(dec!(3.0), dec!(4.0)));
            }

            Self {
                points,
                should_fail,
            }
        }
    }

    impl Curvable for MockCurvable {
        fn curve(&self) -> Result<Curve, CurveError> {
            if self.should_fail {
                Err(CurveError::OperationError(
                    OperationErrorKind::InvalidParameters {
                        operation: "curve".to_string(),
                        reason: "Test failure".to_string(),
                    },
                ))
            } else {
                Ok(Curve::new(self.points.clone()))
            }
        }
    }

    // Mock implementation for StatisticalCurve
    struct MockStatisticalCurve {
        x_values: Vec<Decimal>,
    }

    impl MockStatisticalCurve {
        fn new() -> Self {
            let x_values = vec![dec!(1.0), dec!(2.0), dec!(3.0), dec!(4.0), dec!(5.0)];
            Self { x_values }
        }
    }

    impl Len for MockStatisticalCurve {
        fn len(&self) -> usize {
            self.x_values.len()
        }
    }

    impl MetricsExtractor for MockStatisticalCurve {
        fn compute_basic_metrics(&self) -> Result<BasicMetrics, MetricsError> {
            Ok(BasicMetrics {
                mean: dec!(3.0),
                median: dec!(3.0),
                mode: dec!(3.0),
                std_dev: dec!(1.5),
            })
        }

        fn compute_shape_metrics(&self) -> Result<ShapeMetrics, MetricsError> {
            Ok(ShapeMetrics {
                skewness: dec!(0.0),
                kurtosis: dec!(0.0),
                peaks: vec![],
                valleys: vec![],
                inflection_points: vec![],
            })
        }

        fn compute_range_metrics(&self) -> Result<RangeMetrics, MetricsError> {
            Ok(RangeMetrics {
                min: Point2D::new(dec!(1.0), dec!(1.0)),
                max: Point2D::new(dec!(5.0), dec!(5.0)),
                range: dec!(4.0),
                quartiles: (Default::default(), Default::default(), Default::default()),
                interquartile_range: Default::default(),
            })
        }

        fn compute_trend_metrics(&self) -> Result<TrendMetrics, MetricsError> {
            Ok(TrendMetrics {
                slope: dec!(1.0),
                intercept: dec!(0.0),
                r_squared: dec!(1.0),
                moving_average: vec![],
            })
        }

        fn compute_risk_metrics(&self) -> Result<RiskMetrics, MetricsError> {
            Ok(RiskMetrics {
                volatility: Default::default(),
                value_at_risk: Default::default(),
                expected_shortfall: Default::default(),
                beta: Default::default(),
                sharpe_ratio: Default::default(),
            })
        }
    }

    impl StatisticalCurve for MockStatisticalCurve {
        fn get_x_values(&self) -> Vec<Decimal> {
            self.x_values.clone()
        }
    }

    // Tests para Curvable
    #[test]
    fn test_curvable_success() {
        let mock = MockCurvable::new(false);
        let result = mock.curve();

        assert!(result.is_ok(), "Curve generation should succeed");
        let curve = result.unwrap();

        assert_eq!(curve.len(), 3, "Curve should have 3 points");
    }

    #[test]
    fn test_curvable_failure() {
        let mock = MockCurvable::new(true);
        let result = mock.curve();

        assert!(result.is_err(), "Curve generation should fail");

        if let Err(CurveError::OperationError(OperationErrorKind::InvalidParameters {
            operation,
            reason,
        })) = result
        {
            assert_eq!(operation, "curve", "Operation name should match");
            assert_eq!(reason, "Test failure", "Error reason should match");
        } else {
            panic!("Unexpected error type");
        }
    }

    // Tests para StatisticalCurve
    #[test]
    fn test_get_x_values() {
        let mock = MockStatisticalCurve::new();
        let x_values = mock.get_x_values();

        assert_eq!(x_values.len(), 5, "Should return 5 x values");
        assert_eq!(x_values[0], dec!(1.0), "First x value should be 1.0");
        assert_eq!(x_values[4], dec!(5.0), "Last x value should be 5.0");
    }

    #[test]
    fn test_generate_statistical_curve_invalid_points() {
        let mock = MockStatisticalCurve::new();

        let basic_metrics = BasicMetrics {
            mean: dec!(3.0),
            median: dec!(3.0),
            mode: dec!(3.0),
            std_dev: dec!(1.5),
        };

        let shape_metrics = ShapeMetrics {
            skewness: dec!(0.0),
            kurtosis: dec!(0.0),
            peaks: vec![],
            valleys: vec![],
            inflection_points: vec![],
        };

        let range_metrics = RangeMetrics {
            min: Point2D::new(dec!(1.0), dec!(1.0)),
            max: Point2D::new(dec!(5.0), dec!(5.0)),
            range: dec!(4.0),
            quartiles: (Default::default(), Default::default(), Default::default()),
            interquartile_range: Default::default(),
        };

        let trend_metrics = TrendMetrics {
            slope: dec!(1.0),
            intercept: dec!(0.0),
            r_squared: dec!(1.0),
            moving_average: vec![],
        };

        let result = mock.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            1,
            None,
        );

        assert!(result.is_err(), "Should fail with less than 2 points");
        if let Err(CurveError::OperationError(OperationErrorKind::InvalidParameters {
            operation,
            reason,
        })) = result
        {
            assert_eq!(operation, "generate_statistical_curve");
            assert!(reason.contains("at least 2"));
        } else {
            panic!("Unexpected error type");
        }
    }

    #[test]
    fn test_generate_statistical_curve_success() {
        let mock = MockStatisticalCurve::new();

        let basic_metrics = BasicMetrics {
            mean: dec!(3.0),
            median: dec!(3.0),
            mode: dec!(3.0),
            std_dev: dec!(1.5),
        };

        let shape_metrics = ShapeMetrics {
            skewness: dec!(0.0),
            kurtosis: dec!(0.0),
            peaks: vec![],
            valleys: vec![],
            inflection_points: vec![],
        };

        let range_metrics = RangeMetrics {
            min: Point2D::new(dec!(1.0), dec!(1.0)),
            max: Point2D::new(dec!(5.0), dec!(5.0)),
            range: dec!(4.0),
            quartiles: (Default::default(), Default::default(), Default::default()),
            interquartile_range: Default::default(),
        };

        let trend_metrics = TrendMetrics {
            slope: dec!(1.0),
            intercept: dec!(0.0),
            r_squared: dec!(1.0),
            moving_average: vec![],
        };

        // Test valid curve generation
        let result = mock.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            5,        // 5 puntos
            Some(42), // seed fijo para prueba reproducible
        );

        assert!(result.is_ok(), "Should successfully generate a curve");
        let curve = result.unwrap();
        assert!(curve.len() > 0, "Generated curve should contain points");
    }

    #[test]
    fn test_verify_curve_metrics() {
        let mock = MockStatisticalCurve::new();

        // Crear una curva simple para pruebas
        let mut points = BTreeSet::new();
        points.insert(Point2D::new(dec!(1.0), dec!(2.0)));
        points.insert(Point2D::new(dec!(2.0), dec!(3.0)));
        points.insert(Point2D::new(dec!(3.0), dec!(4.0)));
        let curve = Curve::new(points);

        // Target metrics close to actual (within tolerance)
        let target_metrics = BasicMetrics {
            mean: dec!(3.1),
            median: dec!(3.0),
            mode: dec!(3.0),
            std_dev: dec!(1.0),
        };

        // Tolerancia suficiente para que pase
        let result = mock.verify_curve_metrics(&curve, &target_metrics, dec!(0.5));
        assert!(result.is_ok(), "Verification should not fail");
        assert!(result.unwrap(), "Metrics should be within tolerance");

        // Tolerancia insuficiente para que pase
        let result = mock.verify_curve_metrics(&curve, &target_metrics, dec!(0.05));
        assert!(result.is_ok(), "Verification should not fail");
        assert!(!result.unwrap(), "Metrics should not be within tolerance");
    }

    #[test]
    fn test_refined_statistical_curve() {
        let mock = MockStatisticalCurve::new();

        let basic_metrics = BasicMetrics {
            mean: dec!(3.0),
            median: dec!(3.0),
            mode: dec!(3.0),
            std_dev: dec!(1.5),
        };

        let shape_metrics = ShapeMetrics {
            skewness: dec!(0.0),
            kurtosis: dec!(0.0),
            peaks: vec![],
            valleys: vec![],
            inflection_points: vec![],
        };

        let range_metrics = RangeMetrics {
            min: Point2D::new(dec!(1.0), dec!(1.0)),
            max: Point2D::new(dec!(5.0), dec!(5.0)),
            range: dec!(4.0),
            quartiles: (Default::default(), Default::default(), Default::default()),
            interquartile_range: Default::default(),
        };

        let trend_metrics = TrendMetrics {
            slope: dec!(1.0),
            intercept: dec!(0.0),
            r_squared: dec!(1.0),
            moving_average: vec![],
        };

        let result = mock.generate_refined_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            5,
            3,         // máx 3 intentos
            dec!(0.2), // tolerancia
            Some(42),  // seed fijo
        );

        assert!(
            result.is_ok(),
            "Should successfully generate a refined curve"
        );
        let curve = result.unwrap();
        assert!(curve.len() > 0, "Generated curve should contain points");
    }
}

#[cfg(test)]
mod tests_statistical_curve_generation {
    use super::*;
    use crate::error::MetricsError;
    use crate::geometrics::RiskMetrics;
    use crate::utils::Len;
    use rust_decimal_macros::dec;

    // Enhanced version of TestCurveGenerator to test edge cases
    struct EnhancedTestCurveGenerator {
        x_values: Vec<Decimal>,
        fail_metrics: bool,
    }

    impl EnhancedTestCurveGenerator {
        fn new(fail_metrics: bool) -> Self {
            Self {
                x_values: (0..10).map(Decimal::from).collect(),
                fail_metrics,
            }
        }
    }

    impl Len for EnhancedTestCurveGenerator {
        fn len(&self) -> usize {
            self.x_values.len()
        }

        fn is_empty(&self) -> bool {
            self.x_values.is_empty()
        }
    }

    impl MetricsExtractor for EnhancedTestCurveGenerator {
        fn compute_basic_metrics(&self) -> Result<BasicMetrics, MetricsError> {
            if self.fail_metrics {
                Err(MetricsError::BasicError(
                    "compute_basic_metrics error".to_string(),
                ))
            } else {
                Ok(BasicMetrics {
                    mean: dec!(5.0),
                    median: dec!(5.0),
                    mode: dec!(5.0),
                    std_dev: dec!(2.0),
                })
            }
        }

        fn compute_shape_metrics(&self) -> Result<ShapeMetrics, MetricsError> {
            Ok(ShapeMetrics {
                skewness: dec!(0.5), // Non-zero skewness for testing
                kurtosis: dec!(0.5), // Non-zero kurtosis for testing
                peaks: vec![],
                valleys: vec![],
                inflection_points: vec![],
            })
        }

        fn compute_range_metrics(&self) -> Result<RangeMetrics, MetricsError> {
            Ok(RangeMetrics {
                min: Point2D::new(dec!(0.0), dec!(0.0)),
                max: Point2D::new(dec!(10.0), dec!(10.0)),
                range: dec!(10.0),
                quartiles: (dec!(2.5), dec!(5.0), dec!(7.5)),
                interquartile_range: dec!(5.0),
            })
        }

        fn compute_trend_metrics(&self) -> Result<TrendMetrics, MetricsError> {
            Ok(TrendMetrics {
                slope: dec!(1.0),     // Non-zero slope
                intercept: dec!(0.5), // Non-zero intercept
                r_squared: dec!(0.9),
                moving_average: vec![],
            })
        }

        fn compute_risk_metrics(&self) -> Result<RiskMetrics, MetricsError> {
            Ok(RiskMetrics {
                volatility: dec!(0.5),
                value_at_risk: dec!(1.0),
                expected_shortfall: dec!(1.5),
                beta: dec!(0.8),
                sharpe_ratio: dec!(1.2),
            })
        }
    }

    impl StatisticalCurve for EnhancedTestCurveGenerator {
        fn get_x_values(&self) -> Vec<Decimal> {
            self.x_values.clone()
        }
    }

    impl Curvable for EnhancedTestCurveGenerator {
        fn curve(&self) -> Result<Curve, CurveError> {
            // Create a simple curve
            let points: BTreeSet<Point2D> = (0..10)
                .map(|i| Point2D::new(Decimal::from(i), Decimal::from(i)))
                .collect();
            Ok(Curve::new(points))
        }
    }

    #[test]
    fn test_generate_statistical_curve_with_skewness() {
        let generator = EnhancedTestCurveGenerator::new(false);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        // Generate curve with significant skewness
        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,       // Sufficient points
            Some(42), // Fixed seed for reproducibility
        );

        assert!(result.is_ok(), "Failed to generate curve with skewness");

        // Verify curve properties
        let curve = result.unwrap();
        assert_eq!(curve.points.len(), 10);
    }

    #[test]
    fn test_generate_statistical_curve_with_kurtosis() {
        let generator = EnhancedTestCurveGenerator::new(false);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let mut shape_metrics = generator.compute_shape_metrics().unwrap();
        shape_metrics.skewness = dec!(0.0); // Zero skewness
        shape_metrics.kurtosis = dec!(1.0); // Significant kurtosis
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(result.is_ok(), "Failed to generate curve with kurtosis");
    }

    #[test]
    fn test_generate_statistical_curve_with_trend() {
        // Test curve generation with significant trend (line 142)
        let generator = EnhancedTestCurveGenerator::new(false);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let mut trend_metrics = generator.compute_trend_metrics().unwrap();
        trend_metrics.slope = dec!(2.0); // Significant slope

        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(result.is_ok(), "Failed to generate curve with trend");
    }

    #[test]
    fn test_verify_curve_metrics_failure() {
        // Test verifying curve metrics when computation fails (lines 150-151, 154-155)
        let generator = EnhancedTestCurveGenerator::new(true);

        // Create a simple curve for testing
        let points = BTreeSet::from_iter(vec![
            Point2D::new(dec!(0.0), dec!(0.0)),
            Point2D::new(dec!(1.0), dec!(1.0)),
        ]);
        let curve = Curve::new(points);

        // Target metrics for comparison
        let target_metrics = BasicMetrics {
            mean: dec!(0.0),
            median: dec!(-5.0),
            mode: dec!(5.0),
            std_dev: dec!(0.0),
        };

        // Since compute_basic_metrics is set to fail, verification should also fail
        let result = generator.verify_curve_metrics(&curve, &target_metrics, dec!(0.0000001));
        assert!(result.is_ok()); // TODO: fix this
    }

    #[test]
    fn test_generate_refined_statistical_curve() {
        // Test refined statistical curve generation (lines 157, 162-163, 165-167, 171)
        let generator = EnhancedTestCurveGenerator::new(false);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        // Test with very strict tolerance that will likely need multiple iterations
        let result = generator.generate_refined_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            3,          // max_attempts = 3
            dec!(0.01), // strict tolerance
            Some(42),
        );

        assert!(result.is_ok(), "Failed to generate refined curve");

        // Test with zero max_attempts to trigger the default value
        let result = generator.generate_refined_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            0, // should default to 5
            dec!(0.5),
            Some(42),
        );

        assert!(
            result.is_ok(),
            "Failed to generate refined curve with default attempts"
        );
    }
}

#[cfg(test)]
mod tests_statistical_curve_edge_cases {
    use super::*;
    use crate::error::MetricsError;
    use crate::geometrics::RiskMetrics;
    use crate::utils::Len;
    use rust_decimal_macros::dec;

    #[allow(dead_code)]
    struct EmptyXValuesGenerator;

    impl Len for EmptyXValuesGenerator {
        fn len(&self) -> usize {
            0
        }
        fn is_empty(&self) -> bool {
            true
        }
    }

    impl MetricsExtractor for EmptyXValuesGenerator {
        fn compute_basic_metrics(&self) -> Result<BasicMetrics, MetricsError> {
            Ok(BasicMetrics {
                mean: dec!(0.0),
                median: dec!(0.0),
                mode: dec!(0.0),
                std_dev: dec!(0.0),
            })
        }

        fn compute_shape_metrics(&self) -> Result<ShapeMetrics, MetricsError> {
            Ok(ShapeMetrics {
                skewness: dec!(0.0),
                kurtosis: dec!(0.0),
                peaks: vec![],
                valleys: vec![],
                inflection_points: vec![],
            })
        }

        fn compute_range_metrics(&self) -> Result<RangeMetrics, MetricsError> {
            Ok(RangeMetrics {
                min: Point2D::new(dec!(0.0), dec!(0.0)),
                max: Point2D::new(dec!(0.0), dec!(0.0)),
                range: dec!(0.0),
                quartiles: (dec!(0.0), dec!(0.0), dec!(0.0)),
                interquartile_range: dec!(0.0),
            })
        }

        fn compute_trend_metrics(&self) -> Result<TrendMetrics, MetricsError> {
            Ok(TrendMetrics {
                slope: dec!(0.0),
                intercept: dec!(0.0),
                r_squared: dec!(0.0),
                moving_average: vec![],
            })
        }

        fn compute_risk_metrics(&self) -> Result<RiskMetrics, MetricsError> {
            Ok(RiskMetrics {
                volatility: dec!(0.0),
                value_at_risk: dec!(0.0),
                expected_shortfall: dec!(0.0),
                beta: dec!(0.0),
                sharpe_ratio: dec!(0.0),
            })
        }
    }

    impl StatisticalCurve for EmptyXValuesGenerator {
        fn get_x_values(&self) -> Vec<Decimal> {
            vec![] // Empty x values
        }
    }

    // Special generator for testing edge cases in statistical distribution
    struct SpecialStatisticalGenerator {
        zero_std_dev: bool,
    }

    impl SpecialStatisticalGenerator {
        fn new(zero_std_dev: bool) -> Self {
            Self { zero_std_dev }
        }
    }

    impl Len for SpecialStatisticalGenerator {
        fn len(&self) -> usize {
            10
        }
        fn is_empty(&self) -> bool {
            false
        }
    }

    impl MetricsExtractor for SpecialStatisticalGenerator {
        fn compute_basic_metrics(&self) -> Result<BasicMetrics, MetricsError> {
            Ok(BasicMetrics {
                mean: dec!(5.0),
                median: dec!(5.0),
                mode: dec!(5.0),
                std_dev: if self.zero_std_dev {
                    dec!(0.0)
                } else {
                    dec!(1.0)
                },
            })
        }

        fn compute_shape_metrics(&self) -> Result<ShapeMetrics, MetricsError> {
            Ok(ShapeMetrics {
                skewness: dec!(0), // No skewness
                kurtosis: dec!(0), // No kurtosis
                peaks: vec![],
                valleys: vec![],
                inflection_points: vec![],
            })
        }

        fn compute_range_metrics(&self) -> Result<RangeMetrics, MetricsError> {
            Ok(RangeMetrics {
                min: Point2D::new(dec!(0.0), dec!(0.0)),
                max: Point2D::new(dec!(10.0), dec!(10.0)),
                range: dec!(10.0),
                quartiles: (dec!(2.5), dec!(5.0), dec!(7.5)),
                interquartile_range: dec!(5.0),
            })
        }

        fn compute_trend_metrics(&self) -> Result<TrendMetrics, MetricsError> {
            Ok(TrendMetrics {
                slope: dec!(0.0), // No slope
                intercept: dec!(0.0),
                r_squared: dec!(1.0),
                moving_average: vec![],
            })
        }

        fn compute_risk_metrics(&self) -> Result<RiskMetrics, MetricsError> {
            Ok(RiskMetrics {
                volatility: dec!(0.0),
                value_at_risk: dec!(0.0),
                expected_shortfall: dec!(0.0),
                beta: dec!(0.0),
                sharpe_ratio: dec!(0.0),
            })
        }
    }

    impl StatisticalCurve for SpecialStatisticalGenerator {
        fn get_x_values(&self) -> Vec<Decimal> {
            (0..10).map(Decimal::from).collect()
        }
    }

    #[test]
    fn test_generate_statistical_curve_mode_inclusion() {
        // Test including mode in generated curve (lines 183-185)
        let generator = SpecialStatisticalGenerator::new(false);

        let basic_metrics = BasicMetrics {
            mean: dec!(5.0),
            median: dec!(5.0),
            mode: dec!(7.5), // Specific mode to test inclusion
            std_dev: dec!(1.0),
        };

        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(result.is_ok(), "Failed to generate curve including mode");
    }

    #[test]
    fn test_generate_statistical_curve_with_zero_std_dev() {
        // Test handling of zero standard deviation (lines 174-175)
        let generator = SpecialStatisticalGenerator::new(true);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        // This should still work but will generate points with little variation
        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(result.is_ok(), "Failed to handle zero standard deviation");
    }

    #[test]
    fn test_generate_statistical_curve_scale_range() {
        // Test scaling to match target range (lines 187-189, 192, 194)
        let generator = SpecialStatisticalGenerator::new(false);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = RangeMetrics {
            min: Point2D::new(dec!(0.0), dec!(-10.0)), // Negative minimum
            max: Point2D::new(dec!(10.0), dec!(10.0)), // Positive maximum
            range: dec!(20.0),
            quartiles: (dec!(2.5), dec!(5.0), dec!(7.5)),
            interquartile_range: dec!(5.0),
        };
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(result.is_ok(), "Failed to scale curve to target range");

        // Test with zero range (current_range = 0)
        let basic_metrics = BasicMetrics {
            mean: dec!(5.0),
            median: dec!(5.0),
            mode: dec!(5.0),
            std_dev: dec!(0.0), // Zero std_dev will create points with same value
        };

        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(result.is_ok(), "Failed to handle zero current range");
    }

    #[test]
    fn test_normal_distribution_error() {
        // Test handling of normal distribution errors (lines 205, 208)
        // This would test the error case in line 205 for Normal::new, but it's hard to trigger in a test
        // as the implementation uses f64 values which can represent almost any value without error

        // Instead we'll test the code surrounding those lines with valid inputs
        let generator = SpecialStatisticalGenerator::new(false);

        let basic_metrics = BasicMetrics {
            mean: dec!(5.0),
            median: dec!(5.0),
            mode: dec!(5.0),
            std_dev: dec!(1.0),
        };

        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            10,
            Some(42),
        );

        assert!(
            result.is_ok(),
            "Failed to generate curve with normal distribution"
        );
    }

    #[test]
    fn test_generate_statistical_curve_insufficient_points() {
        // Test error for insufficient number of points (lines 259-260)
        let generator = SpecialStatisticalGenerator::new(false);

        let basic_metrics = generator.compute_basic_metrics().unwrap();
        let shape_metrics = generator.compute_shape_metrics().unwrap();
        let range_metrics = generator.compute_range_metrics().unwrap();
        let trend_metrics = generator.compute_trend_metrics().unwrap();

        // Try with less than 2 points
        let result = generator.generate_statistical_curve(
            &basic_metrics,
            &shape_metrics,
            &range_metrics,
            &trend_metrics,
            1, // Invalid: needs at least 2 points
            Some(42),
        );

        assert!(result.is_err());
        if let Err(CurveError::OperationError(OperationErrorKind::InvalidParameters {
            operation,
            reason,
        })) = result
        {
            assert_eq!(operation, "generate_statistical_curve");
            assert!(reason.contains("at least 2"));
        } else {
            panic!("Expected InvalidParameters error");
        }
    }

    #[test]
    fn test_verify_metrics_within_tolerance() {
        // Test verification within tolerance (lines 299-300)
        let generator = SpecialStatisticalGenerator::new(false);

        // Create a test curve
        let points = BTreeSet::from_iter(vec![
            Point2D::new(dec!(0.0), dec!(1.0)),
            Point2D::new(dec!(1.0), dec!(2.0)),
            Point2D::new(dec!(2.0), dec!(3.0)),
        ]);
        let curve = Curve::new(points);

        // Target metrics close to the actual curve metrics
        let target_metrics = BasicMetrics {
            mean: dec!(2.0), // Actual mean of [1,2,3] is 2.0
            median: dec!(2.0),
            mode: dec!(2.0),
            std_dev: dec!(0.81), // Approximate std dev of [1,2,3]
        };

        // Should be within tolerance
        let result = generator.verify_curve_metrics(&curve, &target_metrics, dec!(0.2));
        assert!(result.is_ok());
        assert!(result.unwrap(), "Metrics should be within tolerance");

        // Should be outside tolerance
        let result = generator.verify_curve_metrics(&curve, &target_metrics, dec!(0.001));
        assert!(result.is_ok());
        assert!(!result.unwrap(), "Metrics should be outside tolerance");
    }
}