In the initialize() function, I have fetch_csv() and schedule_function(). In fetch_cv(), I read stocks I want to trade from outer link. In schedule_function(), I do trading upon these stocks. However, when I backtest in daily mode, it works fine, but there's no trade in minute mode. In detail, the schedule_function() doesn't run at all. I don't know why. Can anyone help me?
fetch_csv("https://copy.com/******", pre_func=preview, post_func=preview, date_column='date', universe_func=my_universe)
schedule_function(rebalance, date_rules.every_day(), time_rules.market_close(minutes=5))
Happy New Year!