Hi guys,

Is the indicator support dynamic parameter which may change after initialization? 

For example, 

public override void Initialize() {
var period = 14;
RSI = new RelativeStrengthIndex(period);
...
}
public void OnData(Slice data) {
...
period += 20;
RSI = new RelativeStrengthIndex(period); //where the period will be 34.
...

}

Many thanks.