Hi members, I am trying to achieve below for my algorithm:

  1. I have created an Indicator which tracks 200 period Moving average:

self.slow = ExponentialMovingAverage(200)

2. I want to know what was the lowest 200 period Moving average value of my Moving average indicator(slow), so I am trying to use Minimum indicator for it. 

self.ma200FiftyTwoLow = Minimum(200)

Now my question is how do I use RegisterIndicator() function such that my ma200FiftyTwoLow will be updated with my new values of  slow? 

Can I use something like below?

RegisterIndicator(self.symbol,self.ma200FiftyTwoLow, self.slow.Current.Value)