this
.When(StrategyRuleConditionHelper.StrategyNewMyTrades(this))
.Do(InformAboutNewMyTrade)
.Do(StartAggressive);
Первый метод(InformAboutNewMyTrade) почему-то не вызывается. Как переписать это правильно?
this
.When(StrategyRuleConditionHelper.StrategyNewMyTrades(this))
.Do(InformAboutNewMyTrade)
.Do(StartAggressive);
Первый метод(InformAboutNewMyTrade) почему-то не вызывается. Как переписать это правильно?
Comments (1)
Login or Create account, Log in or register to leave a comment
Вызывать из Do два метода как обычно делается на C#