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

A grid of round price levels.

Indicator input parameters:

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+
input string  SirName="PriceGrid1_Plus";     //The first part of the name of graphical objects
input uint  Digits_=2;                       //Number of digits to round
input uint  Total=200;                       //Number of blocks in the grid above or below the price
//----
input color  Color_A = clrSlateBlue;         //The color of the level 1
input bool ShowPriceLable_A = true;          //Display the value of price label 1 on the price chart
input color  Color_AL = clrBlueViolet;       //Color of price label 1 
input STYLE  Style_A = DASHDOTDOT_;          //Style of level 1 line
input WIDTH  Width_A = Width_1;              //Width of level 1 line
//----
input color  Color_B = clrDarkOrange;        //The color of the level 2
input bool ShowPriceLable_B = true;          //Display the value of price label 2 on the price chart
input color  Color_BL = clrDarkOrange;       //Color of price label 2 
input STYLE  Style_B = DASH_;                //Style of level 2 line
input WIDTH  Width_B = Width_1;              //Width of level 2 line
//----
input color  Color_C = clrMagenta;           //The color of the level 3
input bool ShowPriceLable_C = true;          //Display the value of price label 3 on the price chart
input color  Color_CL = clrMagenta;          //Color of price label 3
input STYLE  Style_C = SOLID_;               //Style of level 3 line
input WIDTH  Width_C = Width_1;              //Width of level 3 line
//----
input color  Color_D = clrRed;               //The color of the level 4
input bool ShowPriceLable_D = true;          //Display the value of price label 4 on the price chart
input color  Color_DL = clrRed;              //Color of price label 4
input STYLE  Style_D = SOLID_;               //Style of level 4 line
input WIDTH  Width_D = Width_1;              //Width of level 4 line
//----
input color  Color_E = clrLime;              //The color of the level 5
input bool ShowPriceLable_E = true;          //Display the value of price label 5 on the price chart
input color  Color_EL = clrLime;             //Color of price label 5
input STYLE  Style_E = SOLID_;               //Style of level 5 line
input WIDTH  Width_E = Width_1;              //Width of level 5 line
//----
input uint FontSize = 2;                     //The color of price labels
input int  Shift = 5;                        //Horizontal shift of price labels in bars
input bool ShowLineInfo = true;              //Display the value of level on the price chart

Fig.1. The PriceGrid1_Plus indicator

Fig.1. The PriceGrid1_Plus indicator

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

ATR_Channels_Cloud_Digit ATR_Channels_Cloud_Digit

Three channels using the ATR indicator, based on one moving average, drawn as a colored cloud, with the display of the last values as price labels and the possibility to round the channel levels up to the required number of digits.

ATR_Channels_HTF ATR_Channels_HTF

The ATR_Channels indicator with the timeframe selection option available in input parameters.

XFatlXSatlMACD XFatlXSatlMACD

The MACD histogram, based on the FATL and SATL digital filters with color indication of trends.

XFatlXSatlCloud XFatlXSatlCloud

Indicator based on smoothed FATL and SATL digital filters and signal trend cloud between them.