Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
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
Vues:
4131
Note:
(21)
Publié:
2017.05.29 15:52
Mise à jour:
2023.03.29 13:47
\MQL5\Include\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Two colored filled rectangles with the display of channel levels. The rectangles are drawn between the values ​​of two Bollinger channels on one bar of any timeframe of the XMA_BBx5_Cloud indicator.

Indicator input parameters:

//+----------------------------------------------+
//| Indicator input parameters                   |
//+----------------------------------------------+ 
input ENUM_TIMEFRAMES TimeFrame=PERIOD_H4;// Chart period
input Smooth_Method XMA_Method=MODE_SMA_; //Averaging method
input uint XLength=100; //Depth of averaging                    
input int XPhase=15; //First averaging parameter,
3//---- for JJMA within the range of -100 ... +100, it influences the quality of the transition process;
//---- for VIDIA it is a CMO period, for AMA it is a slow average period
input double BandsDeviation1=2.0; //Deviation 1
input double BandsDeviation2=4.0; //Deviation 2
input Applied_price_ IPC=PRICE_CLOSE_;//Price constant
input int Shift=0; // Horizontal indicator shift in bars
input int PriceShift=0; // Vertical indicator shift in points
//---- Colors of price labels
input color  Middle_color=clrBlue;
input color  Upper_color1=clrMediumSeaGreen;
input color  Lower_color1=clrRed;
input color  Upper_color2=clrDodgerBlue;
input color  Lower_color2=clrMagenta;

The indicator requires XMA_BBx5_Cloud.mq5 indicator file. Place it in <terminal_data_folder>\MQL5\Indicators.

Fig1. The XMA_BB_Pivot_HTF indicator

Fig1. The XMA_BB_Pivot_HTF indicator

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/18165

Statistics Statistics

Analyzes bars whose opening time (hour and minute) is equal to the current bar opening time.

Exp_Kolier_SuperTrend_X2 Exp_Kolier_SuperTrend_X2

This is a trend trading system based on the signals of two Kolier_SuperTrend indicators.

XMA_KLx5_Cloud XMA_KLx5_Cloud

Two Keltner channels based on one moving average, drawn as a colored cloud, with the display of the last values as price labels.

XMA_Keltner_Pivot_HTF XMA_Keltner_Pivot_HTF

Two colored filled rectangles with the display of channel levels. The rectangles are drawn between the values ​​of two Keltner channels on one bar of any timeframe of the XMA_KLx5_Cloud indicator.