you can code yourself
EA or script
#include <Trade\Trade.mqh> CTrade trade; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ bool PositionCloseByTime(int hours,int minutes) { ulong ticket; int total=PositionsTotal(); for(int i=total-1;i>=0;i--) { ticket=PositionGetTicket(i); if(PositionSelectByTicket(ticket)) if(TimeCurrent()-PositionGetInteger(POSITION_TIME)>=hours*3600+minutes*60) return(trade.PositionClose(ticket)); } //--- return(false); } //+------------------------------------------------------------------+

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Does anyone know of an expert/ utility that i can use to auto close an order after it has been open x minutes & x hours?