Code: Select all
self.configs_df = self.configs_df.filter(
(ticker != '' & pl.col('Ticker') == ticker) &
(strategy != '' & pl.col('Strategy') == strategy) &
(iteration >= 0 & pl.col('Iteration') == iteration)
)
Code: Select all
self.configs_df = self.configs_df.filter(
(ticker != '' & pl.col('Ticker') == ticker) &
(strategy != '' & pl.col('Strategy') == strategy) &
(iteration >= 0 & pl.col('Iteration') == iteration)
)