Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
- Visualizzazioni:
- 34388
- Valutazioni:
- Pubblicato:
- 2011.11.09 11:54
- Aggiornato:
- 2016.11.22 07:32
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
MQL5 version of the conventional ZigZag indicator from the MetaTrader 4 client terminal allowing to set Fibo levels at two last extremums.
Indicator input parameters:
//+----------------------------------------------+ //| Indicator input parameters | //+----------------------------------------------+ input int ExtDepth=12; input int ExtDeviation=5; input int ExtBackstep =3; //---- Fibo features at the last high input bool DynamicFiboFlag=true; // DynamicFibo display flag input color DynamicFibo_color=Blue; // DynamicFibo color input ENUM_LINE_STYLE DynamicFibo_style=STYLE_DASHDOTDOT; // DynamicFibo style input int DynamicFibo_width=1; // DynamicFibo line width input bool DynamicFibo_AsRay=true; // DynamicFibo ray //---- Fibo features at the second to last high input bool StaticFiboFlag=true; // StaticFibo display flag input color StaticFibo_color=Red; // StaticFibo color input ENUM_LINE_STYLE StaticFibo_style=STYLE_DASH; // StaticFibo style input int StaticFibo_width=1; // StaticFibo line width input bool StaticFibo_AsRay=false; // StaticFibo ray
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/533

Instantaneous Trendline shows buy and sell signals, while crossing the moving averages.

The indicator marks possible trend reversals.

The indicator generates continuous lines of the relative average bullish and bearish power.

Autotrendlinien generates a channel in the direction of an existing trend.