private void Notify(NotificationLevel notificationLevel, int notificationEvent, Strategy strategy, string message = "") { var strategyNotification = strategy.GetNotification(notificationLevel, notificationEvent, message); strategyNotificationPublisher.AddNotification(strategyNotification); strategyLogger.AddNotification(strategyNotification); }
private void StrategyCustomNotificationEvent(object sender, StrategyNotificationEventArgs e) { strategyCustomNotificationPublisher.AddNotification(e.StrategyNotification); }
private void StrategyCandlesticksEvent(object sender, StrategyNotificationEventArgs e) { strategyCandlesticksPublisher.AddNotification(e.StrategyNotification); }
private void StrategyOrderBookEvent(object sender, StrategyNotificationEventArgs e) { strategyOrderBookPublisher.AddNotification(e.StrategyNotification); }
private void StrategyAccountInfoEvent(object sender, StrategyNotificationEventArgs e) { strategyAccountInfoPublisher.AddNotification(e.StrategyNotification); }
private void StrategyParameterUpdateEvent(object sender, StrategyNotificationEventArgs e) { strategyParameterUpdatePublisher.AddNotification(e.StrategyNotification); }