how to use time for limit entry

 

I want to use time for stop entry order

this is my code:

int d =TimeDay(TimeCurrent());

int h=TimeHour(TimeCurrent());

if(OrdersHistoryTotal()>0){

for(int i=OrdersHistoryTotal(),i>0,i--)

   {OrderSelect(Symbol(),h,MODE_HISTORY);

      int D=TimeDay(OrderCloseTime());

      int H=TimeHour(OrderClosePrice());

         if(d=D && H=h){sleep(3000);}}}

the same time,but it's still entry multiple orders at once

how to code it correctly,please help me....

 
I have no idea what you are trying to do and I do not believe that your code will compile, so your EA is probably working with whatever code compiled correctly last.
 
your code looks over your history orders from recent to less recent and if it finds an order that is closed on the same hour of current hour it waits for 50 minutes. Now what is the problem?
 
it's not wait 50 minute.it still continuing open order...
 
int H=TimeHour( OrderClosePrice( ));
  1. Don't paste code
    Play video
    Please edit your post.
    For large amounts of code, attach it.

  2. Would you like to explain what that line does?
  3. Check your return codes (OrderSelect) What are Function return values ? How do I use them ? - MQL4 forum and Common Errors in MQL4 Programs and How to Avoid Them - MQL4 Articles
Reason: