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
Indicateurs

Simple Continuous ParabolicSAR - indicateur pour MetaTrader 5

Vues:
8013
Note:
(23)
Publié:
2015.01.22 12:29
Mise à jour:
2016.11.22 07:32
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
  • For any instruments and time frames.
  • The main variable of the period ParabolicSARPeriod.

The principal calculation of the indicator consist of 9 lines

 max=0;
 min=0;
for(int j=1; j<=ParabolicSARPeriod; j++)
     {
   max=max+Highest(High,j,i)/ParabolicSARPeriod;
   min=min+Lowest(Low,j,i)/ParabolicSARPeriod;
     }
max= NormalizeDouble(max,_Digits);
min= NormalizeDouble(min,_Digits);

As a comparison simple ParabolicSAR is shown

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

RSI_2HTF RSI_2HTF

A colored cloud formed by two RSI oscillators with different timeframes.

MA_2HTF MA_2HTF

A colored cloud formed by two moving averages with different timeframes.

ColorCCI ColorCCI

The classic CCI with the colored signal levels. For the moments of time, when the CCI indicator is in oversold and overbought zones, there are change of the indicator color corresponding to the trend direction. The growing trend colors the indicator in lettuce green, the falling into the red one.

MFI_HTF MFI_HTF

The MFI oscillator with the timeframe selection option available in input parameters.