Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Sistemi Esperti

Ingrit - sistema esperto per MetaTrader 5

Pubblicati da::
Vladimir Karputov
Visualizzazioni:
5331
Valutazioni:
(17)
Pubblicato:
2019.02.07 08:58
Ingrit.mq5 (72.94 KB) visualizza
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

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:

Ingrit

Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/23499

Starter Starter

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

XXDPO_Candle XXDPO_Candle

Indicator XXDPO represented as candles

hedger hedger

Protecting a position (hedging)

Stochastic_Convergence_Divergence Stochastic_Convergence_Divergence

Indicator Two Stochastics with MA Smoothing and Convergence Divergence line