//+---------------------------------------------------------------------------------------------------------------------------------+
//| ScalpMateClear.mq4 
//|	Copyright © 2012, Fedorov Valeriy
//+---------------------------------------------------------------------------------------------------------------------------------+
#property copyright ""
#property link      ""

//+---------------------------------------------------------------------------------------------------------------------------------+
int start()
{
  int i,type;

  int obj_total;
  string name;
  
  i=0;
  obj_total=ObjectsTotal();
  while(i<obj_total)
    {
    name=ObjectName(i);
    type=ObjectType(name);
    if(type==1) 
      {
      ObjectDelete(name);
      i=0;
      obj_total=ObjectsTotal();
      continue;
      }
    i++;
    }

  return(0);
}
//+---------------------------------------------------------------------------------------------------------------------------------+

