Hi Gods_Chown,
Interesting indicator.
Do you use in any EA?
Thank you,
Rogério
This is a discussion on All about Zig Zag & Variant within the Trading tools forums, part of the Trading Forum category; Hi Gods_Chown, Interesting indicator. Do you use in any EA? Thank you, Rogério...
Hi Gods_Chown,
Interesting indicator.
Do you use in any EA?
Thank you,
Rogério
Hi Gods_Clown,
Unfortunately the Zigzag indicators do repainting.
I tested the indicator doublezigzagnorepaint indicated by the ND but it generates many signals is difficult to use as a trend.
Regards,
Rogério
Hi Igor,
I need to add a new signal fractalzigzagnorepaint Indicator .
When you have a fractalzigzagnorepaint signal
Compare with Low bar Ifractal down
if(zFractalLow>FractalHigh) zzFractalUP[i]=1; // IF iFractal bar Low > fractalzigzagnorepaint Bar High ZFractaUp Signal = 1
I try to modify the code but unfortunately the signal does not appear.
See the code below and Indicator attached.
for(int i = limit; i >= start; i--)
{
// Zig Zag high
double zzhighn = iCustom(Symbol(), 0, "ZigZag", ZZDepth, ZZDev, ZZBack, 1, i);
if(zzhighn != 0) zzhigh = zzhighn;
// Zig Zag low
double zzlown = iCustom(Symbol(), 0, "ZigZag", ZZDepth, ZZDev, ZZBack, 2, i);
if(zzlown != 0) zzlow = zzlown;
// Last fractals
double resistance = upper_fractal(i);
double support = lower_fractal(i);
//--------------------------------------------------------
// Show signals
//--------------------------------------------------------
// Show signal if it is a fractal and matches last zigzag high value
if(fr_support_change == true && fr_support == zzlow)
{
// Show arrow on fractal and pricetag
//ExtMapBuffer1[i+2] = fr_support - nShift*Point;
ExtMapBuffer1[i] = fr_support - nShift*Point;
FractalHigh = iHigh(Symbol(), 0, i);
} else
// Show signal if it is a fractal and matches last zigzag low value
if(fr_resistance_change == true && fr_resistance == zzhigh)
{
// Show arrow on fractal and pricetag
//ExtMapBuffer2[i+2] = fr_resistance + nShift*Point;
ExtMapBuffer2[i] = fr_resistance + nShift*Point;
FractalLow = iLow(Symbol(), 0, i);
}
// New Signal Zfractal
double zFractalUp=iFractals(NULL,0,MODE_UPPER,i);
double zFractalDn=iFractals(NULL,0,MODE_LOWER,i);
if (zFractalUp!=0) zFractalLow= iLow(Symbol(), 0, i);
if (zFractalDn!=0) zFractalHigh= iHigh(Symbol(), 0, i);
if(zFractalLow>FractalHigh) zzFractalUP[i]=1;
if(zFractalHigh<FractalLow) zzFractalDN[i]=-1;
}
Thank you,
Rogério
Premium section update.
UniZigZag
- UniZigZagChannel_v2.0 600+ indicator is on this post (premium section link). The is the updated UniZigZagChannel with the Fibo Level buffer. The version is for the build 600 and above
Premium Trading Forum: subscription, public discussion and latest news
Trading Forum wiki || MQL5 channel for the forum
Trading blogs || My blog
Hi Igor,
Is it possible to update the fibo_s indicator for the new version of MT4?
See attached file fibo_s.mq4
Thank you,
Rogério
Hi Rogério,
Please check out the updated fibo_s indicator for the new MT4 build.
Attachment 24820
Regards,
Igor
Thank you Igor,
I'll test.
Is it possible to create an indicator similar to Auto Fibonacci Phenomenon URL Automatic Fibonacci Forex Indicator Software ?
It has the range for SL and TP1 TP2 and TP3 with buy or sell signal.
Thank you,
Rogério
UniZigZagChannel_v2.1 600+ indicator is on this post. The is the updated UniZigZagChannel indicator which is able to recognize the well-known 1-2-3 Pattern. The version is for the build 600 and above
Premium Trading Forum: subscription, public discussion and latest news
Trading Forum wiki || MQL5 channel for the forum
Trading blogs || My blog
UniZigZagChannel_v2.2 600+ indicator is on this post. The is the updated UniZigZagChannel indicator which is able to recognize the well-known 1-2-3 Pattern with Signals arrows, FiboLevels and all kinds of alert inc email alert and Push Notifications.
Premium Trading Forum: subscription, public discussion and latest news
Trading Forum wiki || MQL5 channel for the forum
Trading blogs || My blog
Bookmarks