View Single Post
  #4 (permalink)  
Old 09-22-2006, 05:34 PM
phoenix's Avatar
phoenix phoenix is offline
Senior Member
 
Join Date: May 2006
Posts: 287
phoenix is on a distinguished road
Quote:
Originally Posted by Willis11of12
Also, does anyone know how to prevent trades from duplicating in the same minute?
for(int i=0; i<HistoryTotal();i++)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY))
int closeminute=TimeMinute(OrderCloseTime());
}
**********
or if(OrderSelect(HistoryTotal()-1,SELECT_BY_POS,MODE_HISTORY))
for picking up the last order
**********
if(TimeMinute(CurTime())==closeminute)bool BlockOpen=true;

if(!BlockOpen)
{
OrderSend(......);
}

Last edited by phoenix; 09-22-2006 at 05:37 PM.
Reply With Quote