(returns: Vec<f64>)
| 97 | |
| 98 | #[pyfunction(name = "bets_concentration")] |
| 99 | fn bs_bets_concentration(returns: Vec<f64>) -> Option<f64> { |
| 100 | openquant::backtest_statistics::bets_concentration(&returns) |
| 101 | } |
| 102 | |
| 103 | #[pyfunction(name = "all_bets_concentration")] |
| 104 | fn bs_all_bets_concentration( |
nothing calls this directly
no test coverage detected