Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
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

RabbitM2 - sistema esperto per MetaTrader 5

Pubblicati da::
Vladimir Karputov
Visualizzazioni:
4045
Valutazioni:
(22)
Pubblicato:
2017.08.10 12:53
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

The author of the idea is Peter, and the author of the mq5 code is barabashkakvn.

The trend is determined on the zero bar based on two Moving Averages (fast and slow). They also generate preliminary signals:

if fast MA < slow MA

//--- Buying AND Selling 
   if(ema_fast<ema_slow)
     {
...
      sell=true;
      buy=false;
     }

i.e. it a signal to open a SELL position;

if fast MA > slow MA

   if(ema_fast>ema_slow)
     {
...
      sell=false;
      buy=true;
     }

it is a signal to open a BUY position.

Signals are confirmed using the WPR indicator (on the zero or first bar) and by comparing the values of the CCI indicator to the "CCI sell level" or "CCI buy level".

Each profitable position is subject to the following check: Is its profit greater than the threshold value "Positive profit in the deposit currency"? If it is, the next position will be opened with the volume increased by "Volume step".

Testing results on EURUSD:

RabbitM2 EURUSD M5

RabbitM2 EURUSD M15

RabbitM2 EURUSD H1

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

Color_PEMA_Envelopes_Digit_System Color_PEMA_Envelopes_Digit_System

The indicator implements a breakthrough system using the Color_PEMA_Envelopes_Digit channel.

Color_QEMA_Envelopes_Digit_System Color_QEMA_Envelopes_Digit_System

The indicator implements a breakthrough system using the Color_QEMA_Envelopes_Digit channel.

Color_PEMA_Envelopes_Digit_HTF Color_PEMA_Envelopes_Digit_HTF

The Color_PEMA_Envelopes_Digit indicator with the timeframe selection option available in the indicator input parameters.

Color_QEMA_Envelopes_Digit_HTF Color_QEMA_Envelopes_Digit_HTF

The Color_QEMA_Envelopes_Digit indicator with the timeframe selection option available in the indicator input parameters.