help

 
please help
I want Exebert to delete all outstanding transactions just every day at 20hrs
 
Search in the CodeBase for "close all trades after"
 
Carl Schreiber:
Search in the CodeBase for "close all trades after"

I've searched a lot

I did not find what was required

Please Help

 
Sameh Safwat Zaka:

I've searched a lot

I did not find what was required

Please Help

This simple?

if(Hour()==20)
 {
 for(int OT=OrdersTotal(); OT>0; OT--)
  {
  //delete or close?
  }
 }

I would update for GMT+DST & retries count, and it needs the OrderDelete or OrderClose..

 
Brian Lillard:

This simple?

I would update for GMT+DST & retries count, and it needs the OrderDelete or OrderClose..

please  file mq4

 
Sameh Safwat Zaka:

I've searched a lot

I did not find what was required

Please Help

Seems, you did not make a search ...
Because I spent less than 1 minute to find (mql4 file) - 

----------------

Close At Time - expert for MetaTrader 4

Close At Time is an Expert Advisor for MetaTrader 4 trading platform, that closes open positions or deletes pending orders or both. You can also specify how it should be closed — by symbol, magic number or ticket number. And the last one is time when Expert Advisor will close selected orders. Time is meant local time of computer. Expert Advisor has also integrated error description for cases when there is some problem while closing individual orders.

EA is built on idea that it has to be done. It means that if there is an error while closing order or position, EA will try it again on next tick. It has also small problem when this idea is applied. Other trades, opened after selected time and satisfying selected conditions, are closed (EA is not stopped). But it doesn't violate basic idea.

 
Sameh Safwat Zaka:
please help
I want Exebert to delete all outstanding transactions just every day at 20hrs

Please find some information below: the thread about how to search, and all the information about Freelance - 

How to make a search on the Forum/CodeBase/Market/Articles
https://www.mql5.com/en/forum/193510 

----------------

Freelance - key links
https://www.mql5.com/en/forum/9950/page106#comment_5665871

How can I search for indicators and other elements in this forum?
How can I search for indicators and other elements in this forum?
  • 2017.05.29
  • www.mql5.com
How can I search for indicators in this forum? I need the Hodrick Prescott Filter for MT4. Please, if anyone can help me, I thank you in advance...
 
Sergey Golubev:

Seems, you did not search ...
Because I spent less than 1 minute to find (mql4 file) - 

----------------

Close At Time - expert for MetaTrader 4

thank you