Alexander Elkholy
Alexander Elkholy
I tried working around this by passing in a set of dates corresponding to the time period I want to rebalance on ``` strategy = bt.Strategy("strategy", [ bt.algos.RunOnDate(dates), bt.algos.SelectWhere(indicator_df), bt.algos.WeighTarget(reset_to_datetime(weights_df)),...
[Did not mean to close this adding my comment, so reopening] So I have the following code: ``` strategy = bt.Strategy("strategy", [ bt.algos.RunDaily(), bt.algos.SelectWhere(indicator_df), bt.algos.WeighTarget(reset_to_datetime(weights_df)), bt.algos.Rebalance() ]) default_t = bt.Backtest(strategy,...