The script removes old objects of the selected type from all charts, if the time coordinates of these objects are outside of the trigger level.
//+-----------------------------------------------+ //| SCRIPT INPUT PARAMETERS Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â | //+-----------------------------------------------+ input ENUM_OBJECT OBJ_TYPE=-1;Â Â Â Â //The type of objects to delete input uint TimeLevel=10;Â Â Â Â Â Â Â Â Â Â //Trigger level in days
So, the TimeLevel input determines the number of days back from the current one. Objects before that day will be deleted.