Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Indicateurs

Fractal_WeightOscillator - indicateur pour MetaTrader 5

Vues:
4625
Note:
(22)
Publié:
2017.01.26 09:28
Mise à jour:
2023.03.29 13:47
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

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

Traduit du russe par MetaQuotes Ltd.
Code original : 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.