Example #1
0
 /// <summary>
 /// Resets the average to its initial state
 /// </summary>
 public override void Reset()
 {
     _filt = 0;
     _high.Reset();
     _low.Reset();
     _n = 16;
     _w = -4.6;
     base.Reset();
 }
Example #2
0
 /// <summary>
 /// Resets this indicator to its initial state
 /// </summary>
 public override void Reset()
 {
     base.Reset();
     _multipliedDiffWindow.Reset();
 }
Example #3
0
 /// <summary>
 ///     Resets this indicator to its initial state
 /// </summary>
 public override void Reset()
 {
     base.Reset();
     _window.Reset();
 }
 /// <summary>
 /// Resets this indicator to its initial state
 /// </summary>
 public override void Reset()
 {
     _adx.Reset();
     _adxHistory.Reset();
     base.Reset();
 }