| 99 | |
| 100 | #[derive(Debug, Clone, PartialEq)] |
| 101 | pub struct BacktestDiagnostics { |
| 102 | pub mode: BacktestMode, |
| 103 | pub mode_provenance: String, |
| 104 | pub trials_count: usize, |
| 105 | pub split_count: usize, |
| 106 | pub pct_embargo: f64, |
| 107 | pub safeguards: BacktestSafeguards, |
| 108 | pub anti_leakage: AntiLeakageDiagnostics, |
| 109 | } |
| 110 | |
| 111 | #[derive(Debug, Clone, PartialEq)] |
| 112 | pub struct WalkForwardConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected