Esempio n. 1
0
        /// <summary>
        /// Enter the description for the new custom indicator here
        /// </summary>
        public RunningWithTheWolves_Indicator RunningWithTheWolves_Indicator(IDataSeries input, System.Boolean shouldIGoLong, System.Boolean shouldIGoShort)
        {
            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.RunningWithTheWolves_Indicator(input, shouldIGoLong, shouldIGoShort));
        }
Esempio n. 2
0
 /// <summary>
 /// Enter the description for the new custom indicator here
 /// </summary>
 public RunningWithTheWolves_Indicator RunningWithTheWolves_Indicator(IDataSeries input, System.Boolean shouldIGoLong, System.Boolean shouldIGoShort)
 {
     return(LeadIndicator.RunningWithTheWolves_Indicator(input, shouldIGoLong, shouldIGoShort));
 }