EW Easy Counter Script-Remove All Labels-V2

Author: � 2011 TRADERTOOLS-FX.COM
EW Easy Counter Script-Remove All Labels-V2
1 Views
0 Downloads
0 Favorites
EW Easy Counter Script-Remove All Labels-V2
//+------------------------------------------------------------------+
//|                                     EW Labeler-Remove Labels.mq4 |
//|  This tool removes all the wave labels created                   |
//|  by the Corrective wave script and the Motive wave script        |
//|  More free tools @ tradertools-fx.com                            |
//|                                    Paul Nordin                   |
//|                                    http://www.tradertools-fx.com |
//+------------------------------------------------------------------+
#property copyright "© 2011 TRADERTOOLS-FX.COM"
#property link      "http://www.tradertools-fx.com"

int numCycles = 100;
//+------------------------------------------------------------------+
//| script program start function                                    |
//+------------------------------------------------------------------+
int start() {
//----
   for ( int j = 0; j < numCycles; j++ ) {
      for ( int i = 0; i < numCycles; i++ ) {
         ObjectDelete( StringConcatenate( "Wave", i, j ) );
         ObjectDelete( StringConcatenate( "Counter Wave", i, j ) );
      }
   }
   
//----
   return(0);
 }
int deinit() {
  Comment("");
  return(0);
}
//+------------------------------------------------------------------+

Comments