Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
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

Custom Bears Power Inputs - indicateur pour MetaTrader 5

Vues:
3596
Note:
(10)
Publié:
2018.09.27 15:52
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Two settings have been added to input parameters: line color (Color) and line width (Width).

Custom Bears Power Inputs

Why are the line color (Color) and line width (Width) are provided as input parameters, whereas the line color and width in the standard indicator can be changed manually? If you test a strategy in the tester or the indicator is added to a chart by an Expert Advisor (via ChartIndicatorAdd), Bears Power is ALWAYS displayed with the default color and width:

FUTKCSEP18H1 Bears

In my opinion, such a display is not very convenient, so here is a custom indicator Custom Bears Power Inputs (using iCustom), with the passing of parameters colors and widths

//--- create handle of the indicator iBearsPower
   handle_iBearsPower=iCustom(m_symbol.Name(),Period(),"Custom Bears Power Inputs",
                            InpMAPeriod,InpBearsColor,InpBearsWith);
//--- if the handle is not created 
   if(handle_iBearsPower==INVALID_HANDLE)
     {
      //--- tell about the failure and output the error code 
      PrintFormat("Failed to create handle of the iBearsPower indicator for the symbol %s/%s, error code %d",
                  Symbol(),
                  EnumToString(Period()),
                  GetLastError());
      //--- the indicator is stopped early 
      return(INIT_FAILED);
     }

This allows you to see a more beautiful indicator in the tester or on the terminal chart:

Custom Bears Power Inputs

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

Custom Bulls Power Inputs Custom Bulls Power Inputs

A modification of the "Bulls Power" indicator: now the line color and line width can be set in input parameters.

Custom Moving Average Inputs Custom Moving Average Inputs

A modification of the "Custom Moving Average" indicator: now the line color and line width can be set in input parameters.

i-AnyRangeCldTail_System i-AnyRangeCldTail_System

The indicator paints candlesticks, which are beyond the i-AnyRangeCldTail channel. Candlesticks outside the channel limits are marked with color according to the trend.

i-AnyRangeCldTail_System_Alert i-AnyRangeCldTail_System_Alert

The i-AnyRangeCldTail_System indicator provides alerts, sends email and push notifications when the candlesticks break through the dot-dash channel.