거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
3668
평가:
(11)
게시됨:
2018.09.27 16:16
\MQL5\Include\ \MQL5\Indicators\
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Indicator Wajdyss_Ichimoku_x10 shows the color of the Wajdyss_Ichimoku_Candle indicator candlesticks from ten different timeframes from the bar defined in the indicator input parameters. The trend continuation is shown as a square, while the trend change is shown as a circle.

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+
input ENUM_TIMEFRAMES TimeFrame0=PERIOD_H1;           //chart 1 period
input ENUM_TIMEFRAMES TimeFrame1=PERIOD_H2;           //chart 2 period
input ENUM_TIMEFRAMES TimeFrame2=PERIOD_H3;           //chart 3 period
input ENUM_TIMEFRAMES TimeFrame3=PERIOD_H4;           //chart 4 period
input ENUM_TIMEFRAMES TimeFrame4=PERIOD_H6;           //chart 5 period
input ENUM_TIMEFRAMES TimeFrame5=PERIOD_H8;           //chart 6 period
input ENUM_TIMEFRAMES TimeFrame6=PERIOD_H12;          //chart 7 period
input ENUM_TIMEFRAMES TimeFrame7=PERIOD_D1;           //chart 8 period
input ENUM_TIMEFRAMES TimeFrame8=PERIOD_W1;           //chart 9 period
input ENUM_TIMEFRAMES TimeFrame9=PERIOD_MN1;          //chart 10 period
input uint SignalBar=1;                               //Bar number to receive a signal (0 - current bar)
//---- Parameters of wajdyss_Ichimoku
input uint Kijun=26;
//---- Indicator drawing parameters
input color  CpColor=clrBlueViolet;                   //indicator name color
input color  UpUpColor=clrDeepSkyBlue;                //color of growing trend and growing candlestick
input color  UpDnColor=clrBlue;                       //color of growing trend and falling candlestick
input color  ZrColor=clrGray;                         //color without changes
input color  DnUpColor=clrBrown;                      //color of falling trend and growing candlestick
input color  DnDnColor=clrMagenta;                    //color of falling trend and falling candlestick
input int    FontSize=15;                             //font size
input type_font FontType=Font14;                      //font type
input ENUM_BASE_CORNER  WhatCorner=CORNER_LEFT_LOWER; //location corner
input uint Y_=20;                                     //vertical location
input uint X_=5;                                      //horizontal location

For the indicator to operate, the Wajdyss_Ichimoku_Candle.ex5 indicator must be added to the <terminal_data_directory>\MQL5\Indicators folder.

Fig. 1. wajdyss_Ichimoku_x10

Fig. 1. wajdyss_Ichimoku_x10

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/21652

PCR PCR

The PCR (Percent Retracement) indicator shows the maximum distance by which the price has moved away from the highest High in the specified range.

MultiWajdyss_Ichimoku_x10 MultiWajdyss_Ichimoku_x10

MultiWajdyss_Ichimoku_x10 shows information on the current trends, using the colors of the Wajdyss_Ichimoku_Candle indicator from ten different timeframes.

OHLC Check OHLC Check

Checking a trading system: Close > Open → BUY signal, Close < Open → SELL signal.

Exp_XAng_Zad_C_Tm_MMRec Exp_XAng_Zad_C_Tm_MMRec

A trading system using the XAng_Zad_C trend-following indicator with the possibility to set a fixed trading time interval and change the volume of a forthcoming trade depending on the results of the previous trades.