EW Easy Counter Script-Remove All Labels-V2

Author: � 2011 TRADERTOOLS-FX.COM
EW Easy Counter Script-Remove All Labels-V2
0 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

Markdown supported. Formatting help

Markdown Formatting Guide

Element Markdown Syntax
Heading # H1
## H2
### H3
Bold **bold text**
Italic *italicized text*
Link [title](https://www.example.com)
Image ![alt text](image.jpg)
Code `code`
Code Block ```
code block
```
Quote > blockquote
Unordered List - Item 1
- Item 2
Ordered List 1. First item
2. Second item
Horizontal Rule ---