diff --git a/Extend cBot.algo b/Extend cBot.algo index 4fc2d05..ce06e6f 100644 Binary files a/Extend cBot.algo and b/Extend cBot.algo differ diff --git a/Extend cBot/Extend cBot.cs b/Extend cBot/Extend cBot.cs index 2051c1a..980dc60 100644 --- a/Extend cBot/Extend cBot.cs +++ b/Extend cBot/Extend cBot.cs @@ -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 diff --git a/Extend cBot/Extensions.cs b/Extend cBot/Extensions.cs index 1602f6d..940ba81 100644 --- a/Extend cBot/Extensions.cs +++ b/Extend cBot/Extensions.cs @@ -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); }