Beispiel #1
0
 protected override void Init()
 {
     ema1 = EMA(Input, Period);
     ema2 = EMA(ema1.Value, Period);
     ema3 = EMA(ema2.Value, Period);
 }
Beispiel #2
0
 protected override void Init()
 {
     ema    = EMA(Input, Period);
     emaEma = EMA(ema.Value, Period);
 }
Beispiel #3
0
 protected override void Init()
 {
     emaFast = EMA(Input, Fast);
     emaSlow = EMA(Input, Slow);
 }