25 private readonly
int _period;
36 public Trix(
string name,
int period)
51 : this($
"TRIX({period})", period)
58 public override bool IsReady => _roc.IsReady;
78 _ema2.Update(_ema1.Current);
81 _ema3.Update(_ema2.Current);
84 _roc.Update(_ema3.Current);
86 return _roc.Current.Value;