I am using the following to retrieve prices from History with a Minute resolution.  How do I get the times?

hist = self.History(["ADBE"], 780, Resolution.Minute) prices = hist.close for price in prices: self.Log(str(price))

I know it's there but can't figure out how to access it and would appreciate some help.

Author