거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

Plan X - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
10474
평가:
(35)
게시됨:
2019.02.07 09:01
Plan X.mq5 (72.62 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Idea by: Scriptor

mq5 code by: barabashkakvn

ATTENTION: The EA is designed to work on hedge accounts only!

The EA compares the difference between the Close price of bar #1 and the Close price of bar #Candle shift. If the value exceeds Channel height, a position will be opened. At the same time, the reverse of signals (Reverse) is considered:

   if(rates[1].close>rates[InpCandleShift].close+ExtChannelHeight)
     {
      if(!InpReverse)
         m_need_open_buy=true;
      else
         m_need_open_sell=true;
     }
   if(rates[1].close<rates[InpCandleShift].close-ExtChannelHeight)
     {
      if(!InpReverse)
         m_need_open_sell=true;
      else
         m_need_open_buy=true;
     }

If time control (Use time control) is enabled, then trading signals will only be checked within the the predefined time interval (between Start hour and End hour). By the way, if the End hour value is set below the Start hour value, the time interval will go beyond the day.

EURUSD, H1:

Plan X

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

Ilan iMA Ilan iMA

Ilan based on indicator iMA (Moving Average, MA)

RSI_Rendiment RSI_Rendiment

Indicator RSI Rendiment

XXDPO_Candle_Alerts XXDPO_Candle_Alerts

Indicator XXDPO_Candle can provide alerts and send email and push notifications when trading signals occur. Possible signal options

XXDPO_Candle_HTF XXDPO_Candle_HTF

Indicator XXDPO_Candle with the timeframe selection option in its input parameters