Skip to content

Commit

Permalink
1.080 Fixed minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardoCiaccio committed Sep 21, 2022
1 parent 598c261 commit a424d88
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified Extend cBot.algo
Binary file not shown.
2 changes: 1 addition & 1 deletion 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.079";
public const string VERSION = "1.080";

#endregion

Expand Down
2 changes: 1 addition & 1 deletion Extend cBot/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public static bool IsDoji(this Bar thisBar)
public static double DigitsToPips(this Symbol thisSymbol, double Pips)
{

return Math.Round(Pips / thisSymbol.PipSize, 2);
return Math.Round(Pips / thisSymbol.PipSize, 1);

}

Expand Down

0 comments on commit a424d88

Please sign in to comment.