I want to schedule a function 5 minutes after trading close each day. However, I can't see how this could be achieved with the current API.
The imho most obvious choice
schedule_function(record_data,date_rules.every_day(),time_rules.market_close(minutes=-5))
doesn't work, since apparently its only possible to schedule functions before market close in this way, i.e. offset can't be negative.
So how can I schedule a function 5 minutes after market close each day?