/// <summary>
        /// Prüft auf Gap und ob die nachfolgenden 15Mins Kerzen den Gap verstärken oder aufheben
        /// </summary>
        public ShowGap_Indicator ShowGap_Indicator(IDataSeries input, System.Decimal punkteGapMinProz, System.Decimal punkteGapMaxProz)
        {
            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.ShowGap_Indicator(input, punkteGapMinProz, punkteGapMaxProz));
        }
 /// <summary>
 /// Prüft auf Gap und ob die nachfolgenden 15Mins Kerzen den Gap verstärken oder aufheben
 /// </summary>
 public ShowGap_Indicator ShowGap_Indicator(IDataSeries input, System.Decimal punkteGapMinProz, System.Decimal punkteGapMaxProz)
 {
     return(LeadIndicator.ShowGap_Indicator(input, punkteGapMinProz, punkteGapMaxProz));
 }