When I run the following code using a period it works: self.spy_history = self.History(self.spy_symbol, 30, Resolution.Daily)

When I try with start_time an end_time I get an empty dataframe: self.spy_history = self.History(self.spy_symbol, start_time, end_time, Resolution.Daily)

Author