Hi all,

I have managed to obtain the previous days closing price via:

 self.history_close = self.History(["SPY"], 1, Resolution.Daily)
       self.previous_day_close = self.history_close.loc["SPY"]['close']

And I would like to compare this to the most current last price, or to the last 1 minute bar closing price (I am subscribed to minute resolution). Is this even possible, how does one obtain the current last price?

Any help would be greatly appreciated.