Deleting Objects/Label from chart - page 2

 
MAHABAL:
i want to delete the unwanted label and text from my template chart...3 indicators i am using with ex4 file (no mql4) they display unwanted text and label..plz guide me to hide or delete the labe;l only from chart template...


You have to create a script and play it each time, or add a new indicator in your template with this line :


if( ObjectFind( "name_of_object_to_delete" ) > -1)   ObjectDelete("name_of_object_to_delete");


if the name of object  is something like [ "name_of_object"+ numero]  you will have to play with StringSubstr()  to get the first letter of the name of the objects to delete it