I have trouble using DataNormalizationMode.Adjusted.

I want to calculate indicators for my backtest. To that end, I want to use adjusted stock data. Here is the code from Initialize 

        equity_1D = self.AddEquity("AAPL", Resolution.Daily)
        equity_1D.SetDataNormalizationMode(DataNormalizationMode.Adjusted)
        self.symbol_1D = equity_1D.Symbol

For Apple on 2018-01-02, I get the following OHLC  data: 170.16 172.3 169.26 172.26

When I cross check this with TradingView (which also has adjusted data - to my knowledge), Apple trades at 40ish USD.

Any points how to fix this?