거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
4630
평가:
(22)
게시됨:
2017.01.26 09:28
업데이트됨:
2023.03.29 13:47
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Oscillator, representing the weighted smoothed sum of four indicators: Fractal_RSI, Fractal_MFI, Fractal_WPR and Fractal_DeMarker.

The compilation of the Fractal_WeightOscillator indicator requires the compiled indicator files Fractal_RSI.mq5, Fractal_MFI.mq5, Fractal_WPR.mq5 and Fractal_DeMarker.mq5. Place them in <terminal_data_folder>\MQL5\Indicators.

After compilation, the Fractal_WeightOscillator.ex5 indicator file contains the those indicators as resources, and therefore, they are not required to be present in the terminal folder for the compiled indicator to work! For this purpose, the corresponding code has been added to the indicator code in order to include the indicators in the executable file.

The indicator executable files have been added as resources at the global scope

//---- Include the indicators in the EA code as resources
#resource "\\Indicators\\Fractal_RSI.ex5"
#resource "\\Indicators\\Fractal_MFI.ex5"
#resource "\\Indicators\\Fractal_WPR.ex5"
#resource "\\Indicators\\Fractal_DeMarker.ex5"

Changed the string paths to the indicators used as resources in the block of the OnInit() function

//---- getting handle of the Fractal_RSI indicator
   RSI_Handle=iCustom(NULL,0,"::Indicators\\Fractal_RSI",e_period,normal_speed,RSIPrice);
   if(RSI_Handle==INVALID_HANDLE)
     {
      Print(" Failed to get handle of the Fractal_RSI indicator");
      return(INIT_FAILED);
     }
//---- getting handle of the Fractal_MFI indicator
   MFI_Handle=iCustom(NULL,0,"::Indicators\\Fractal_MFI",e_period,normal_speed,MFIPrice,MFIVolumeType);
   if(MFI_Handle==INVALID_HANDLE)
     {
      Print(" Failed to get handle of the Fractal_MFI indicator");
      return(INIT_FAILED);
     }
//---- getting handle of the Fractal_WPR indicator
   WPR_Handle=iCustom(NULL,0,"::Indicators\\Fractal_WPR",e_period,normal_speed);
   if(WPR_Handle==INVALID_HANDLE)
     {
      Print(" Failed to get handle of the Fractal_WPR indicator");
      return(INIT_FAILED);
     }
//---- getting handle of the Fractal_DeMarker indicator
   DeMarker_Handle=iCustom(NULL,0,"::Indicators\\Fractal_DeMarker",e_period,normal_speed);
   if(DeMarker_Handle==INVALID_HANDLE)
     {
      Print(" Failed to get handle of the Fractal_DeMarker indicator");
      return(INIT_FAILED);
     }

Thus, the compiled executable file of the Fractal_WeightOscillator indicator can be used on other trade terminals on its own without the original indicator.

The indicator uses the classes of SmoothAlgorithms.mqh library (copy it to <terminal_data_folder>\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

Compilation order of files:

  1. Fractal_RSI.mq5, Fractal_MFI.mq5, Fractal_WPR.mq5 and Fractal_DeMarker.mq5
  2. Fractal_WeightOscillator.mq5

Fig1. The Fractal_WeightOscillator indicator

Fig1. The Fractal_WeightOscillator indicator

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

Fractal_MFI Fractal_MFI

Fractal Money Flow Index.

Fractal_Keltner_x5_Cloud_HTF Fractal_Keltner_x5_Cloud_HTF

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

ColorXdinMA_Alert ColorXdinMA_Alert

The ColorXdinMA trend moving average, which features alerts, sending emails and push-notifications to mobile devices.

FT BillWillams Trader FT BillWillams Trader

The Expert Advisor based on the iAlligator (Alligator), iMA (Moving Average) indicators.