Alım-satım robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Facebook üzerinde bulun!
Fan sayfamıza katılın
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
Ö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
- Yayınlayan:
- Vladimir Karputov
- Görüntülemeler:
- 5879
- Derecelendirme:
- Yayınlandı:
- 2019.02.07 08:58
-
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
Idea by: Ingrit
mq5 code by: barabashkakvn
BUY opening condition.
Bar #1 is bearish
Difference between the High price of bar #14 and the Low price of bar #1 exceeds the value of parameter "Step"
if(rates_m5[1].open>rates_m5[1].close) if((rates_m5[14].high-rates_m5[1].low)>ExtStep) { if(!InpReverse) m_need_open_buy=true; else m_need_open_sell=true; }
SELL opening condition.
Bar #1 is bullish
Difference between the High price of bar #14 and the Low price of bar #1 exceeds the value of parameter "Step"
if(rates_m5[1].close>rates_m5[1].open) if((rates_m5[1].high-rates_m5[14].low)>ExtStep) { if(!InpReverse) m_need_open_sell=true; else m_need_open_buy=true; }
Testing at EURUSD, H1:
MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/23499

Three timeframes. One iMA (Moving Average, MA) and one iStochastic (Stochastic Oscillator) on each timeframe

Indicator XXDPO represented as candles

Protecting a position (hedging)

Indicator Two Stochastics with MA Smoothing and Convergence Divergence line