| / | Forum |
|
pjh606
2008.11.20 16:46
sI have been experimenting with various self-constructed EAs, but I cannot seem to get them to open at the beginning of a new bar (whatever time frame I use), after a trade has closed. Could someone point me in the right direction to where I could obtain the necessary code, so that a new trade opens in the bar after closing the previous trade, or explain why I’m having this problem? Thanks in advance. PJH |
|
The article deals with the problem of how to arrange pauses between trade operations when a number of experts work on one МТ 4 Client Terminal. It is intended for users who have basic skills in both working with the terminal and programming in MQL 4. |
|
abstract_mind
2008.11.20 17:21
int last_bar=0; int start() { ...... if(last_bar != iTime(Symbol(),0,0) ) { last_bar = iTime(Symbol(),0,0); // update flag //do your stuff here.... //..... } .... } |