Is there any way to get after market data using self.History? My full code is attached, but here are the relevant (i think) parts:

        equity = self.AddEquity("AMD", Resolution.Hour, Market.USA, False, 1, True)
        self.syl = equity.Symbol

        history = self.History(1, Resolution.Hour)

Based on the self.AddEquity it looks like im pulling after market close data but the debug in the logs shows my self.History isn't pulling it in?

self.Debug("{0}: {1}: {2}: {3}: {4}: {5}".format(self.open[-1], self.close[-1], self.high[-1], self.low[-1], self.volume[-1], self.time[-1]))

 

Author