Skip to content

Commit 5897495

Browse files
committed
labels changed
1 parent 6b3251a commit 5897495

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

SolBo/SolBo.Shared/Rules/Validation/BuyStepValidationRule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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),

SolBo/SolBo.Shared/Rules/Validation/SellStepValidationRule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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),

SolBo/SolBo.Shared/Rules/Validation/StopLossStepValidationRule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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),

0 commit comments

Comments
 (0)