| 144 | |
| 145 | #[derive(Debug, Clone, PartialEq)] |
| 146 | pub struct CpcvPathPerformance { |
| 147 | pub path_id: usize, |
| 148 | pub sharpe: f64, |
| 149 | pub mean_return: f64, |
| 150 | pub std_return: f64, |
| 151 | pub observations: usize, |
| 152 | } |
| 153 | |
| 154 | #[derive(Debug, Clone, PartialEq)] |
| 155 | pub struct WalkForwardResult { |
nothing calls this directly
no outgoing calls
no test coverage detected