Harnessing the Wajdyss_Ichimoku_x10 Indicator in MetaTrader 5

Mike 2018.09.28 01:16 50 0 0
Attachments

If you're looking to level up your trading game, the Wajdyss_Ichimoku_x10 indicator is a tool you definitely want in your arsenal. This nifty indicator displays the color of the Wajdyss_Ichimoku_Candle candlesticks across ten different timeframes, giving you valuable insights right from the get-go.

The way it works is pretty straightforward: trend continuations are represented by squares, while trend changes show up as circles. This visual distinction helps you make quicker decisions on your trades.

Setting Up the Indicator

  • Timeframes: You can customize the indicator for various timeframes, from the 1-hour (H1) to the monthly (MN1), allowing you to analyze trends over different periods.
  • Signal Bar: Choose the bar number to receive a signal (0 means the current bar), which can enhance your timing for entering or exiting trades.
  • Color Customization: The indicator lets you personalize the colors for trends and candlesticks, making it visually tailored to your preferences.
//+----------------------------------------------+//| Indicator input parameters                   |//+----------------------------------------------+inputENUM_TIMEFRAMES TimeFrame0=PERIOD_H1;           //chart 1 periodinputENUM_TIMEFRAMES TimeFrame1=PERIOD_H2;           //chart 2 periodinputENUM_TIMEFRAMES TimeFrame2=PERIOD_H3;           //chart 3 periodinputENUM_TIMEFRAMES TimeFrame3=PERIOD_H4;           //chart 4 periodinputENUM_TIMEFRAMES TimeFrame4=PERIOD_H6;           //chart 5 periodinputENUM_TIMEFRAMES TimeFrame5=PERIOD_H8;           //chart 6 periodinputENUM_TIMEFRAMES TimeFrame6=PERIOD_H12;          //chart 7 periodinputENUM_TIMEFRAMES TimeFrame7=PERIOD_D1;           //chart 8 periodinputENUM_TIMEFRAMES TimeFrame8=PERIOD_W1;           //chart 9 periodinputENUM_TIMEFRAMES TimeFrame9=PERIOD_MN1;          //chart 10 periodinputuint SignalBar=1;                               //Bar number to receive a signal (0 - current bar)//---- Parameters of wajdyss_Ichimokuinputuint Kijun=26;
//---- Indicator drawing parametersinputcolor  CpColor=clrBlueViolet;                   //indicator name colorinputcolor  UpUpColor=clrDeepSkyBlue;                //color of growing trend and growing candlestickinputcolor  UpDnColor=clrBlue;                       //color of growing trend and falling candlestickinputcolor  ZrColor=clrGray;                         //color without changesinputcolor  DnUpColor=clrBrown;                      //color of falling trend and growing candlestickinputcolor  DnDnColor=clrMagenta;                    //color of falling trend and falling candlestickinputint    FontSize=15;                             //font sizeinput type_font FontType=Font14;                      //font typeinputENUM_BASE_CORNER  WhatCorner=CORNER_LEFT_LOWER; //location cornerinputuint Y_=20;                                     //vertical locationinputuint X_=5;                                      //horizontal location

To get started, make sure to place the Wajdyss_Ichimoku_Candle.ex5 file into your <terminal_data_directory>\MQL5\Indicators folder. This step is essential for the indicator to function properly.

Fig. 1. Wajdyss_Ichimoku_x10

Fig. 1. Wajdyss_Ichimoku_x10

List
Comments 0