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

The indicator builds Fibonacci levels at candlestick High and Low, based on the timeframe specified in the indicator parameters.

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+
input ENUM_TIMEFRAMES Timeframe=PERIOD_D1;  //Indicator timeframe for calculating Fibonacci levels
input uint   NumberofBar=1;                 //Bar number for calculating Fibo levels
input color   FiboColor=clrGray;            //Fibo color
input double  FiboLevel1 = 0.0;             //value of Fibo level 1
input color  Color_Level1 = clrRed;         //color of Fibo level 1
input double  FiboLevel2 = 0.236;           //value of Fibo level 2
input color  Color_Level2 = clrDarkViolet;  //color of Fibo level 2
input double  FiboLevel3 = 0.382;           //value of Fibo level 3
input color  Color_Level3 = clrOrange;      //color of Fibo level 3
input double  FiboLevel4 = 0.500;           //value of Fibo level 4
input color  Color_Level4 = clrMagenta;     //color of Fibo level 4
input double  FiboLevel5 = 0.618;           //value of Fibo level 5
input color  Color_Level5 = clrBlue;        //color of Fibo level 5
input double  FiboLevel6 = 1.000;           //value of Fibo level 6
input color  Color_Level6 = clrRed;         //color of Fibo level 6
input double  FiboLevel7 = 1.236;           //value of Fibo level 7
input color  Color_Level7 = clrDarkViolet;  //color of Fibo level 7
input double  FiboLevel8 = 1.382;           //value of Fibo level 8
input color  Color_Level8 = clrOrange;      //color of Fibo level 8
input double  FiboLevel9 = 1.500;           //value of Fibo level 9
input color  Color_Level9 = clrMagenta;     //color of Fibo level 9
input double  FiboLevel10 = 1.618;          //value of Fibo level 10
input color  Color_Level10 = clrBlue;       //color of Fibo level 10
input double  FiboLevel11 = 2.000;          //value of Fibo level 11
input color  Color_Level11 = clrRed;        //color of Fibo level 11

Fig.1. The CandlesAutoFibo indicator

Fig.1. The CandlesAutoFibo indicator

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

MFI_normalized MFI_normalized

The MFI normalized indicator

ColorMFI_X20_Cloud ColorMFI_X20_Cloud

The ColorMFI_X20 indicator featuring background filling in overbought/oversold areas

XFisher_org_v1_Vol_Supr_Zer_HTF XFisher_org_v1_Vol_Supr_Zer_HTF

The XFisher_org_v1_Vol_Supr_Zer indicator with the possibility to change the indicator timeframe using input parameters

Cidomo Cidomo

The Expert Advisor uses Buy Stop and Sell Stop pending orders.