Hello, I just wanted to share what I've noticed with my crypto algo and wondering if anybody else had the same experience than me. After may 2024, all my trades are being executed at stale price with the default syntax of the AddCrypto method:

 self.symbol = self.AddCrypto("BTCEUR", resolution= Resolution.Daily).Symbol
narloc_1735389425.jpgnarloc_1735390657.jpg

I have in my algo some control to verify that the symbol bar is available before doing any trade.

if data.Bars.ContainsKey(self.symbol):

After specifying the market to use (other than Coinbase which seems to be the default one) for the addCrypto method, the issue seems resolve : 

self.symbol = self.AddCrypto("BTCEUR", resolution= Resolution.Daily, market=Market.KRAKEN).Symbol
narloc_1735390288.jpgnarloc_1735390292.jpg

Is there an issue with the data provider ? 

If I wanted to trade live the algo, would the trades be impacted with quantconnect being the dataprovider for the algo or is it only a backtesting issue ?