protected void StrategyCustomNotification(StrategyNotificationEventArgs e)
 {
     StrategyCustomNotificationEvent?.Invoke(this, e);
 }
 protected void StrategyStatisticsNotification(StrategyNotificationEventArgs e)
 {
     StrategyStatisticsEvent?.Invoke(this, e);
 }
 protected void StrategyCandlesticksNotification(StrategyNotificationEventArgs e)
 {
     StrategyCandlesticksEvent?.Invoke(this, e);
 }
 protected void StrategyOrderBookNotification(StrategyNotificationEventArgs e)
 {
     StrategyOrderBookEvent?.Invoke(this, e);
 }
 protected void StrategyTradeNotification(StrategyNotificationEventArgs e)
 {
     StrategyTradeEvent?.Invoke(this, e);
 }
 protected void StrategyAccountInfoNotification(StrategyNotificationEventArgs e)
 {
     StrategyAccountInfoEvent?.Invoke(this, e);
 }