Hello,

I added a window rsi indicator:

self.RSI(self.symbol, 14, resolution=resolution).Updated += self.RsiUpdated self.rsiWin = RollingWindow[RelativeStrengthIndex](3) def RsiUpdated(self, sender, updated): '''Adds updated values to rolling window''' self.rsiWin.Add(updated)

Now, according to the documentation, this indicator has 3 outputs: RSI, AverageLoss, AverageGain.

However, I'm only able to get the RSI value with:

self.rsiWin[0].Value

Is there a way to get the other two output values? The same problem stands for other indicators with multiple outputs like MACD or Ichimoku.

Thanks

Daniele

Author