Skip to content

Commit

Permalink
1,074 Reduced the minimum value for "max spread allowed" to zero
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardoCiaccio committed Jun 25, 2022
1 parent ca6f806 commit 5642205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified Extend cBot.algo
Binary file not shown.
4 changes: 2 additions & 2 deletions Extend cBot/Extend cBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ExtendcBot : Strategy

public const string NAME = "Extend cBot";

public const string VERSION = "1.073";
public const string VERSION = "1.074";

#endregion

Expand Down Expand Up @@ -118,7 +118,7 @@ public bool IAmInPause

#region Filters

[Parameter("Max Spread allowed", Group = "Filters", DefaultValue = 1.5, MinValue = 0.1, Step = 0.1)]
[Parameter("Max Spread allowed", Group = "Filters", DefaultValue = 1.5, MinValue = 0, Step = 0.1)]
public double SpreadToTrigger { get; set; }

[Parameter("Max GAP Allowed (pips)", Group = "Filters", DefaultValue = 2, MinValue = 0, Step = 0.1)]
Expand Down

0 comments on commit 5642205

Please sign in to comment.