Hi, 

New QC user here, developing with VS Code. I have installed the QC stubs, but I'm getting an error (i.e. red underline in my Python code) from Pylance that says “Cannot instantiate abstract class SimpleMovingAverage". I've run this code on the cloud platform, so I know it works. Anyone know the issue here ? The offending line:       

        self._ma = IndicatorExtensions.of( SimpleMovingAverage(self.band_length), self._rsi )

…and the top of my Python source:

       from AlgorithmImports import *
       from QuantConnect.Indicators import *