Esempio n. 1
0
        /// <summary>
        /// Adds an instrument to a static list (e.g. watchlist) by clicking on a button in the chart.
        /// </summary>
        public QuickAdd QuickAdd(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.QuickAdd(input));
        }
Esempio n. 2
0
 /// <summary>
 /// Adds an instrument to a static list (e.g. watchlist) by clicking on a button in the chart.
 /// </summary>
 public QuickAdd QuickAdd(IDataSeries input)
 {
     return(LeadIndicator.QuickAdd(input));
 }
Esempio n. 3
0
 /// <summary>
 /// Adds an instrument to a static list (e.g. watchlist) by clicking on a button in the chart.
 /// </summary>
 public QuickAdd QuickAdd()
 {
     return(LeadIndicator.QuickAdd(Input));
 }