거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
게시자:
Vladimir Karputov
조회수:
5264
평가:
(20)
게시됨:
2018.11.20 12:52
Bruno.mq5 (54.84 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The author of the idea - Scriptor

mq5 code author - barabashkakvn

The EA contains five strategies: 

  1. by iADX indicator (Average Directional Movement Index, ADX)
       if(axd_plusdi[1]>axd_minusdi[1] && axd_plusdi[1]>20.0)
          lot_buy*=InpSignalRatio;
       else if(axd_plusdi[1]<axd_minusdi[1] && axd_plusdi[1]<40.0)
          lot_sell*=InpSignalRatio;
    

  2. by iMA (Moving Average, MA) and iStochastic (Stochastic Oscillator) indicators
       if(ma_one[1]>ma_two[1] && sto_main[1]>sto_signal[1] && sto_main[1]<80.0)
          lot_buy*=InpSignalRatio;
       else if(ma_one[1]<ma_two[1] && sto_main[1]<sto_signal[1] && sto_main[1]>20.0)
          lot_sell*=InpSignalRatio;
    


  3. by iMACD (Moving Average Convergence/Divergence, MACD)) indicator
       if(macd_main[1]>0.0 && macd_main[1]>madc_signal[1])
          lot_buy*=InpSignalRatio; 
       else if(macd_main[1]<0.0 && macd_main[1]<madc_signal[1])
          lot_sell*=InpSignalRatio; 
    

  4. by iMA (Moving Average, MA) and iSAR (Parabolic SAR) indicators
       if(ma_one[1]>ma_two[1] && sar[1]>sar[2])
          lot_buy*=InpSignalRatio; 
       else if(ma_one[1]<ma_two[1] && sar[1]<sar[2])
          lot_sell*=InpSignalRatio; 
    


Each strategy increases the initial lot (Lots) Signal ratio times when a signal is activated. If BUY and SELL signals are activated simultaneously, both are ignored.

BUY open signal is also SELL close one and vice versa.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/22933

Volatility2Step Volatility2Step

A simple indicator that calculates rounded volatility of a financial asset. Volatility is calculated in points based on the maximum and minimum prices

OHLC Channel OHLC Channel

The indicator based on two indicator buffers (DRAW_LINE style)

T3_Price_Overlay T3_Price_Overlay

T3 Price Overlay indicator

Highly_Adaptable_MA_Alerts Highly_Adaptable_MA_Alerts

Highly Adaptable Moving Average Alert indicator