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

The entire chain: SignalCandelsHighOpen indicator signal module, the EA based on the signals module — CandelsHighOpen.  

If the last three bars (the zero bar is not considered) are rising:

         (high[i+1]>high[i+2] && high[i+2]>high[i+3] &&
         high[i+3]>high[i+4] && open[i+1]>open[i+2] &&
         open[i+2]>open[i+3] && open[i+3]>open[i+4])

means the indicator generates the "+1" signal.

If the last three bars (the zero bar is not considered) are falling:

         (high[i+1]<high[i+2] && high[i+2]<high[i+3] &&
         high[i+3]<high[i+4] && open[i+1]<open[i+2] &&
         open[i+2]<open[i+3] && open[i+3]<open[i+4])

means the indicator generates the "-1" signal. 

If the last three bars (the zero bar is not considered) are neither rising nor falling, the signal is "0". 

At the same time, the indicator has the Reverse signals parameter — false/true values change the signal sign: 

Indicator Candels High Open

The module of trading signals based on Candels High Open is to be created in the near future (find out more on creating trading signal modules in the article "Create Your Own Trading Robot in 6 Steps!"). An Expert Advisor can be generated afterwards in MQL5 Wizard based on the trading signal module.



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

Zigzag2_R_Color_Arrows_HTF Zigzag2_R_Color_Arrows_HTF

The Zigzag2_R_Color indicator with the timeframe selection option in the input parameters and display of values as fractal labels.

Exp_MFI Exp_MFI

The simplest Expert Advisor based on MFI.

SignalCandelsHighOpen SignalCandelsHighOpen

Module of trading signals of the "Candels High Open" custom indicator for analyzing High and Open of the last three bars.

CandelsHighOpen CandelsHighOpen

CandelsHighOpen Expert Advisor is based on the Candels High Open indicator trading signals module. The EA features trading market and pending orders, as well as trailing stop based on Parabolic SAR.