Is there a way to get custom data before market open ?
def before_trading_start(context, data):
fetch_csv(...)
Fetcher function runs at midnight. But it might be good to do it before market open.
I thought one way to do it is re_deploying the whole algorithm at around 9:29 so the fetcher function will get the data needed. But it's very inconvenient. Any ideas?