public FractalDimension(int period)
		{
			this.period = Math.Max(1, period);
			min = new MIN(this.period);
			max = new MAX(this.period);
			value = min.value;
		}
Example #2
0
 public FractalDimension(int period)
 {
     this.period = Math.Max(1, period);
     min         = new MIN(this.period);
     max         = new MAX(this.period);
     value       = min.value;
 }
Example #3
0
        }                                                                                       // Intrabar are fast and never iterate.

        protected override void OnStartUp()
        {
            max = new JHL.Utility.MAX(period);
        }
Example #4
0
        }											// Intrabar are fast and never iterate.
		
		protected override void OnStartUp()
		{
			max = new JHL.Utility.MAX(period);
		}