Good morning everyone. I have some questions to ask about the code in the file Grid.c (in the folder 'Strategy'). First, if you go to take the test, there is an error in 'set (HEDGING);'. I think that the solution is 'Hedge = 2'. Then when it goes to do the loop: 'for (Price = 0; Price <Close + 5 * Grid; Price + = Grid)', at the beginning Price = 0 and then run: 'if (Price <Close and! FindTrade (Price, Grid, true))
enterShort (1, Price, 20 * Grid, Grid); '. Then 'Price = 200Pip' and then performs the same if. Then 'Price=400Pip' and performs the same if and so on until the end of the for statement. So do not ever place the pending orders over the 'Close', that is never run the statement 'else if(Price > Close...'. Is it correct? Thank You.