I am using the following schedule code however it is not rebalancing on the 1st day and 15. It is rebalancing the second when the dates are 2014-01-01 to 2014-12-31
2014-01-02
2014-01-15
2014-02-03
2014-02-14
2014-03-03
schedule_function(rebalance,
date_rule=date_rules.month_start(),
time_rule=time_rules.market_open())
schedule_function(rebalance,
date_rule=date_rules.month_start(days_offset=10),
time_rule=time_rules.market_open())