public void ActivateIndiRemoveEvent(BaseChartIndicator indi)
 {
     timeUpdateIndicators.Touch();
     if (IndiRemoveEvent == null) return;
     var eventArg = new IndiEventArgs(indi);
     IndiRemoveEvent(this, eventArg);
 }
 public void ActivateIndiEditEvent(string oldName, BaseChartIndicator indi)
 {
     timeUpdateIndicators.Touch();
     if (IndiEditEvent == null) return;
     var eventArg = new IndiEventArgs(indi);
     IndiEditEvent(oldName, eventArg);
 }
Esempio n. 3
0
        public void ActivateIndiRemoveEvent(BaseChartIndicator indi)
        {
            timeUpdateIndicators.Touch();
            if (IndiRemoveEvent == null)
            {
                return;
            }
            var eventArg = new IndiEventArgs(indi);

            IndiRemoveEvent(this, eventArg);
        }
Esempio n. 4
0
        public void ActivateIndiEditEvent(string oldName, BaseChartIndicator indi)
        {
            timeUpdateIndicators.Touch();
            if (IndiEditEvent == null)
            {
                return;
            }
            var eventArg = new IndiEventArgs(indi);

            IndiEditEvent(oldName, eventArg);
        }