ah o.k I think I get it. I have a script (not running) that closes all trades when profit > 2% of balance rather than PIPs or other technical exit. I was just worried that if this were to happen in the future it would cause problems.

Code:
var valOpen()
{  
   var val = 0;  
   for(open_trades)    
      if(strstr(TradeAsset,Asset) && TradeIsOpen)      
         val += TradeResult;  
         return val;
}
function run()
{
  if ( valOpen() > ((Balance / 100) * 2))
  {
     exitLong();
     exitShort();   
  }
}