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

Author:

Eli hayun

The indicator shows possible resistance and support zones in the form of colored rectangles.

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+
input ENUM_TIMEFRAMES Timeframe=PERIOD_D1;  //Indicator timeframe used for calculations
input uint   NumberofBar=1;                 //Bar number for the indicator calculation
input double Ratio1 = 0.618;                //First ratio
input double Ratio2 = 1.382;                //Second ratio
input color  Color_Res2 = clrLime;          //The color of the second resistance zone
input color  Color_Res1 = clrGreen;         //The color of the first resistance zone
input color  Color_Sup1 = clrRed;           //The color of the first support zone
input color  Color_Sup2 = clrMagenta;       //The color of the second support zone
input uint   RightTail=60;                  //Projection of the rectangles to the right beyond the zero bar, in minutes
input uint   LeftTail=60;                   //Projection of the rectangles to the left beyond the starting bar, in minutes

This indicator was first implemented in MQL4 and published in the Code Base at mql4.com on 30.01.2008.

Fig.1. The Fib_SR indicator

Fig.1. The Fib_SR indicator

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

SpearmanRankCorrelation_Histogram_Alerts SpearmanRankCorrelation_Histogram_Alerts

The SpearmanRankCorrelation_Histogram indicator with the ability to send alerts, emails and push notifications when trading signals emerge

SignalTable_Sar_MFI_TEMA SignalTable_Sar_MFI_TEMA

The indicator shows Buy and Sell signals of three indicators (iSAR, iMFI и iTEMA) located in nine timeframes, with full settings

Fib_SR_6 Fib_SR_6

The Fib_SR indicator with two additional support and resistance zones.

jMaster RSI jMaster RSI

The Expert Advisor is based on the RSI Custom Smoothing indicator.