Hi all,

I am trying to get Daily ATR value using Resolution Daily but failed when I subscribed Min Data. Code is as followed. I found that the only way for me to get the correct ans is to change the AddCrypto back to Resolution Daily but then I will not get the minute data for other indicator. Did I do something wrong?

# region imports
from AlgorithmImports import *
# endregion

class DancingBrownShark(QCAlgorithm):

    def Initialize(self):
        self.SetStartDate(2021, 3, 1)  # Set Start Date
        self.SetCash(100000)  # Set Strategy Cash
        self.AddCrypto("ETHUSDT", Resolution.Minute)
        self.atr = self.ATR("ETHUSDT", 14, Resolution.Daily)

    def OnData(self, data: Slice):
        if self.atr.IsReady:
            self.Log(f"{self.Time} {self.atr.Current.Value}")