Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

Simple Continuous ParabolicSAR - indicator for MetaTrader 5

Views:
7999
Rating:
(23)
Published:
2015.01.22 12:29
Updated:
2016.11.22 07:32
Need a robot or indicator based on this code? Order it on Freelance Go to 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

Translated from Russian by MetaQuotes Ltd.
Original code: 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.