/// <summary> /// Initializes a new instance of the <see cref="VolumeWeightedMovingAverage"/>. /// </summary> public Trix() { _ema1 = new ExponentialMovingAverage(); _ema2 = new ExponentialMovingAverage(); _ema3 = new ExponentialMovingAverage(); _roc = new RateOfChange { Length = 1 }; }
/// <summary> /// Создать <see cref="ChaikinVolatility"/>. /// </summary> public ChaikinVolatility() { Ema = new ExponentialMovingAverage(); Roc = new RateOfChange(); }
/// <summary> /// Initializes a new instance of the <see cref="ChaikinVolatility"/>. /// </summary> public ChaikinVolatility() { Ema = new ExponentialMovingAverage(); Roc = new RateOfChange(); }