//< 1. Property 7 >===========================================================================================//< 1> //< 2> #property copyright "Copyright (C) 2009, MetaQuotes Software Corp." //< 3> #property link "http://www.metaquotes.net" //< 4> //< 5> #define A.System.Series "AIS" //< 6> #define A.System.Modification "70401" //< 7> #define A.System.ReleaseDate "2009.06.26" //< 8> #define A.System.Program "Vertical Grid Remover" //< 9> #define A.System.Programmer "Airat Safin http://www.mql4.com/users/Ais" //< 10> //< 11> //===========================================================================================//< 12> ////////////////////////////////////////////////////////////////////////////////////////////////////////////////< 13> //< 2. Constants 1 >==========================================================================================//< 14> //< 15> #define acs.VGPrefix "AVGL_" //< 16> //< 17> //==========================================================================================//< 18> ////////////////////////////////////////////////////////////////////////////////////////////////////////////////< 19> //< 3. Main Program 5 >=======================================================================================//< 20> //< 21> int init () //< 22> { //< 23> //< 24> int ali.ObjectsCounter = ObjectsTotal () - 1 ; //< 25> //< 26> for ( int i = ali.ObjectsCounter ; i >= 0 ; i -- ) //< 27> { //< 28> if ( StringFind ( ObjectName ( i ) , acs.VGPrefix ) >= 0 ) ObjectDelete ( ObjectName ( i ) ) ; //< 29> } // for //< 20> //< 31> } //< 32> //=======================================================================================//< 33>