Esempio n. 1
0
        /// <summary>
        /// The Coppock (Moving Average Convergence/Divergence) is a trend following momentum indicator that shows the relationship between two moving averages of prices.
        /// </summary>
        public Coppock_Indicator Coppock_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.Coppock_Indicator(input));
        }
Esempio n. 2
0
 /// <summary>
 /// The Coppock (Moving Average Convergence/Divergence) is a trend following momentum indicator that shows the relationship between two moving averages of prices.
 /// </summary>
 public Coppock_Indicator Coppock_Indicator(IDataSeries input)
 {
     return(LeadIndicator.Coppock_Indicator(input));
 }
Esempio n. 3
0
 /// <summary>
 /// The Coppock (Moving Average Convergence/Divergence) is a trend following momentum indicator that shows the relationship between two moving averages of prices.
 /// </summary>
 public Coppock_Indicator Coppock_Indicator()
 {
     return(LeadIndicator.Coppock_Indicator(Input));
 }