File tree Expand file tree Collapse file tree
SolBo/SolBo.Shared/Rules/Validation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ namespace SolBo.Shared.Rules.Validation
44{
55 public class BuyStepValidationRule : IValidatedRule
66 {
7- public string RuleAttribute => "BuyPercentageDown " ;
7+ public string RuleAttribute => "BuyDown " ;
88 public IRuleResult RuleExecuted ( Solbot solbot )
99 => ValidatedRuleResult . New (
1010 RulePassed ( solbot ) ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ namespace SolBo.Shared.Rules.Validation
44{
55 public class SellStepValidationRule : IValidatedRule
66 {
7- public string RuleAttribute => "SellPercentageUp " ;
7+ public string RuleAttribute => "SellUp " ;
88 public IRuleResult RuleExecuted ( Solbot solbot )
99 => ValidatedRuleResult . New (
1010 RulePassed ( solbot ) ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ namespace SolBo.Shared.Rules.Validation
44{
55 public class StopLossStepValidationRule : IValidatedRule
66 {
7- public string RuleAttribute => "StopLossPercentageDown " ;
7+ public string RuleAttribute => "StopLossDown " ;
88 public IRuleResult RuleExecuted ( Solbot solbot )
99 => ValidatedRuleResult . New (
1010 RulePassed ( solbot ) ,
You can’t perform that action at this time.
0 commit comments