Join our fan page
AutoFibAutoTrend_OnParabolic - indicator for MetaTrader 5
- Views:
- 10451
- Rating:
- Published:
- 2017.01.19 16:50
- Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Real author:
zzuegg
The indicator plots price channel and Fibonacci levels based on the latest parabolic ZigZag peaks.
Inputs:
//| Inputs |
//+------------------------------------------------+
//---- ZigZag inputs
input ENUM_TIMEFRAMES Timeframe=PERIOD_H6; // ZigZag timeframe for the indicator calculation
input double Step=0.02; // SAR step
input double Maximum=0.2; // SAR maximum
input bool ExtremumsShift=true; // extremum shift flag
//---- indicator display settings
input string Sirname="AutoFibAutoTrend_OnParabolic"; // Name for the indicator labels
input bool ShowFib=true;
input color FibColor=clrMagenta;
input uint FibSize=1;
//----
input bool ShowFibFan=true;
input color FibFanColor=clrMediumSpringGreen;
input uint FibFanSize=1;
//----
input bool ShowTrend=true;
input color TrendColor=clrDodgerBlue;
input uint TrendSize=5;
//+-----------------------------------+
The indicator requires compiled ZigZagOnParabolic.mq5 indicator file. Place it in <terminal_data_folder>\MQL5\Indicators.
Fig.1. AutoFibAutoTrend_OnParabolic indicator
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/16692
i-Regr is a MetaTrader 5 indicator. Regression Channel: Linear Regression Channel, Quadratic (Parabolic) Regression Channel, Cubic Regression Channel.
20/200 expert v 4.2 AntSExtensive use of the standard library classes.
Standard MFI oscillator implemented as a histogram rounding its values to the standard range.
BrainTrend2SigAlertBrainTrend2Sig semaphore signal indicator features alerts, emails and push notifications.