(array: Vec<f64>, encoding: Vec<(f64, char)>)
| 97 | } |
| 98 | |
| 99 | #[pyfunction(name = "get_vpin")] |
| 100 | fn ms_get_vpin(volume: Vec<f64>, buy_volume: Vec<f64>, window: usize) -> Vec<f64> { |
| 101 | openquant::microstructural_features::get_vpin(&volume, &buy_volume, window) |
| 102 | } |
| 103 | |
| 104 | #[pyfunction(name = "get_bvc_buy_volume")] |
nothing calls this directly
no test coverage detected