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

The MasterMind 3 - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
3335
평가:
(19)
게시됨:
2017.01.26 09:12
업데이트됨:
2018.06.15 13:05
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Author of the idea — L.Biggerauthor of the MQL5 code — barabashkakvn.

The Expert Advisor processes signals from four iWPR indicators with different averaging periods: iWPR(26), iWPR(27), iWPR(29), iWPR(30). The OBJ_TEXT objects are displayed on the chart, keeps a log file. 

   sig_buy=iWPRGet(handle_iWPR_26,0);
   sig_sell=iWPRGet(handle_iWPR_27,0);
   sig_high=iWPRGet(handle_iWPR_29,0);
   sig_low=iWPRGet(handle_iWPR_30,0);

//Comment("sig_buy=",sig_buy," sig_sell=",sig_sell);

   if(sig_buy<-99.99 && sig_sell<-99.99 && sig_high<-99.99 && sig_low<-99.99)
     {
      BuyValue=1;
     }

   if(sig_buy>-0.01 && sig_sell>-0.01 && sig_high>-0.01 && sig_low>-0.01)
     {
      SellValue=1;
     }


 

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

VR---STEALS-2 VR---STEALS-2

The Expert Advisor manages positions using labels.

Fractal_WPR_HTF Fractal_WPR_HTF

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

Fractal_DeMarker_HTF Fractal_DeMarker_HTF

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

Exp_Fractal_WPR Exp_Fractal_WPR

The simplest EA based on the fractal WPR.