Hi,

I am a beginner to Quantconnect and am going through the tutorials. One question I have for "Identifying a Stop Loss HIt" tutorial is that the tutorial uses self.Time to update the stopMarketFillTime. My question is, would it be better to use orderEvent.UtcTime to update the time? Or, self.Time and orderEvent.UtcTime will always be the same.

def OnOrderEvent(self, orderEvent): if orderEvent.Status != OrderStatus.Filled: return # Printing the security fill prices. self.Debug(self.Securities["SPY"].Close) #2. Check if we hit our stop loss (Compare the orderEvent.Id with the stopMarketTicket.OrderId) # It's important to first check if the ticket isn't null (i.e. making sure it has been submitted) if self.stopMarketTicket is not None and self.stopMarketTicket.OrderId == orderEvent.OrderId: #3. Store datetime self.stopMarketFillTime = self.Time self.Debug(self.stopMarketFillTime)

Thanks for the help in advance.