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

RabbitM2 - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
4110
평가:
(22)
게시됨:
2017.08.10 12:53
RabbitM2.mq5 (42.91 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: 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.