View Single Post
  #4 (permalink)  
Old 04-14-2007, 01:53 AM
ralph.ronnquist's Avatar
ralph.ronnquist ralph.ronnquist is offline
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
PHP Code:
bool opened_on_current_bar false;

for (
int i OrdersTotal() - 1>=0i-- ) {
    if ( ! 
OrderSelectiSELECT_BY_POS ) )
        continue;
    if ( 
OrderOpenTime() >= Time] ) {
        
opened_on_current_bar true;
        break;
    }
}
// Here the variable opened_on_current_bar is set appropriately 
Reply With Quote