(df: pl.DataFrame, *, interval: str = "1d")
| 95 | |
| 96 | |
| 97 | def build_time_bars(df: pl.DataFrame, *, interval: str = "1d") -> pl.DataFrame: |
| 98 | return _build_by_symbol(df, _core.bars.build_time_bars, _interval_to_seconds(interval)) |
| 99 | |
| 100 | |
| 101 | def build_tick_bars(df: pl.DataFrame, *, ticks_per_bar: int = 50) -> pl.DataFrame: |
nothing calls this directly
no test coverage detected