Forum

Why I see Rectangles instead of arrow or fractals in MT4 ?

Hi Why I see Rectangles instead of arrow or fractals in MT4 ? I put my EA in Tester and it didn't show arrows or fractals. I tested in several MT4 but the problem still exist any suggest, I appreciate. I attached an image. https://pasteboard.co/JKzTkAu.jpg

How can I force the expert wait two candles, Then call the Function.

Hi How can I force the expert wait two candles, Then call the Function . I checked the closing price of two candles 1 and 2, then I want expert wait for two Candle Appear then check the closing price of candles x and x 1. Candle X And X+1 Still Not Exist(I Attached an Image) if (Bid<=downvalue) {

How to count the number of new candles that appear ?

Hi, I'm new in MQL4. counting the number of new candles. I need, every time a new candle formed. Add a number to a variable. I use the following code to find a new candle: bool NewBar() { static datetime time= 0 ; if (time== 0 ) { time=Time[ 0 ]; return false ; } if