//+------------------------------------------------------------------+ //| ExecuteDeleteObjects.mq4 | //| Copyright © 2010, MTL | //| http://www.metatraderlibrary.com | //+------------------------------------------------------------------+ #property copyright "Copyright © 2010, MTL" #property link "http://www.metatraderlibrary.com" int deinit() { return( 0 ); } int start() { int ticket; bool DeleteUPPER = ObjectDelete( "UPPER"); bool DeleteLOWER = ObjectDelete( "LOWER"); //---- return(0); } //+------------------------------------------------------------------+