Wondering if there is a way to get history function data for the end of the trading day prior to the first day of deploying in an algo? In my code below I set up the algo to get history data in the before_trade_start function, but I noticed that it is not returning the data from the prior day until actual trade data has occurred within the algo. So for all intensive purposes the history function in before_trade_start does not work until the second trading day. I thought I could just fix it by putting a history function in the initialize function, but that caught an error. Any suggestions?