Example #1
0
        /// <summary>
        /// Compare the current value of an indicator to latest high value of the indicator in a defined period of time.
        /// </summary>
        public HighestHighValue_Indicator HighestHighValue_Indicator(IDataSeries input)
        {
            if (InInitialize && input == null)
            {
                throw new ArgumentException("You only can access an indicator with the default input/bar series from within the 'Initialize()' method");
            }

            return(LeadIndicator.HighestHighValue_Indicator(input));
        }
Example #2
0
 /// <summary>
 /// Compare the current value of an indicator to latest high value of the indicator in a defined period of time.
 /// </summary>
 public HighestHighValue_Indicator HighestHighValue_Indicator(IDataSeries input)
 {
     return(LeadIndicator.HighestHighValue_Indicator(input));
 }
Example #3
0
 /// <summary>
 /// Compare the current value of an indicator to latest high value of the indicator in a defined period of time.
 /// </summary>
 public HighestHighValue_Indicator HighestHighValue_Indicator()
 {
     return(LeadIndicator.HighestHighValue_Indicator(Input));
 }