I am running a program which take previous close price as parameter. However, I spotted that some close price data is different from yahoo finance. I pointed out one example “AMYT”

2022-11-01 00:00:00 6.84 6.84 YAHOO Finance 6.83 (31, Oct)

2022-11-02 00:00:00 6.79 6.79 YAHOO Finance 6.86 (1, Nov)

The following few days are same and then difference again.

2022-11-09 00:00:00 6.99 6.99 YAHOO Finance 7.00 (8, Nov)

2022-11-10 00:00:00 6.96 6.96 YAHOO Finance 7.00 (9, Nov)

    def BreakOutUniverseSelectionModel(self, coarse):
        for c in coarse:
            if c.Symbol.Value == "AMYT":
                temp = self.History(c.Symbol, 1, Resolution.Daily)
                self.Debug(f"{self.Time} {c.Price} {temp['close'].values[0]}")
        return[c.Symbol for c in coarse]

Author