It seems that indicators can not be properly updated manually in Python. There is no way to initialize an indicator without it auto-updating.

For example:

`hma = self.HMA(self.symbolId, 10)`

will start automatic updates.

How can you prevent automatic updates of an indicator in Python?