(close: Vec<f64>, window: usize)
| 6 | |
| 7 | #[pyfunction(name = "get_roll_measure")] |
| 8 | fn ms_get_roll_measure(close: Vec<f64>, window: usize) -> Vec<f64> { |
| 9 | openquant::microstructural_features::get_roll_measure(&close, window) |
| 10 | } |
| 11 | |
| 12 | #[pyfunction(name = "get_roll_impact")] |
| 13 | fn ms_get_roll_impact(close: Vec<f64>, dollar_volume: Vec<f64>, window: usize) -> Vec<f64> { |
nothing calls this directly
no test coverage detected