Forex_Strategy_Builder.Backtester.ResetStop C# (CSharp) Method

ResetStop() static private method

Resets the variables at the end of the test.
static private ResetStop ( ) : void
return void
        static void ResetStop()
        {
            if (Configs.UseLogicalGroups)
            {
                Strategy.Slot[Strategy.OpenSlot].LogicalGroup  = ""; // Delete the group of open slot.
                Strategy.Slot[Strategy.CloseSlot].LogicalGroup = ""; // Delete the group of close slot.
            }
        }