Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Uzman Danışmanlar

Plan X - MetaTrader 5 için Uzman Danışman

Yayınlayan:
Vladimir Karputov
Görüntülemeler:
10463
Derecelendirme:
(35)
Yayınlandı:
2019.02.07 09:01
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

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 tarafından Rusçadan çevrilmiştir.
Orijinal kod: 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