the good thing is
A and V pattern the most repeated pattern in the markets
-
a4v4c4
- Trader
- Posts: 48
- Joined: Fri Dec 09, 2011 2:38 pm
Re: A and V pattern the most repeated pattern in the markets
You do not have the required permissions to view the files attached to this post.
-
a4v4c4
- Trader
- Posts: 48
- Joined: Fri Dec 09, 2011 2:38 pm
Re: A and V pattern the most repeated pattern in the markets
in 15 m tf
You do not have the required permissions to view the files attached to this post.
-
GT3RS
- Trader
- Posts: 198
- Joined: Fri Dec 23, 2011 1:58 pm
Re: A and V pattern the most repeated pattern in the markets
Let me see if I've got this right.
On H1 chart:
Look for H4 fractal [this will print after 4 x H1 candles according to the indicator].
Then trade it back to the 100SMA.
Problem is, your H4 fractal isn't really confirmed until EIGHT x H1 candles............ or is it even TWELVE H1 candles? Not sure. But I know it's not confirmed after just 4 x H1 candles...................
Do you trade this live?
On H1 chart:
Look for H4 fractal [this will print after 4 x H1 candles according to the indicator].
Then trade it back to the 100SMA.
Problem is, your H4 fractal isn't really confirmed until EIGHT x H1 candles............ or is it even TWELVE H1 candles? Not sure. But I know it's not confirmed after just 4 x H1 candles...................
Do you trade this live?
-
a4v4c4
- Trader
- Posts: 48
- Joined: Fri Dec 09, 2011 2:38 pm
Re: A and V pattern the most repeated pattern in the markets
no Of course just 4 x H1 are u kidding ?GT3RS wrote:Let me see if I've got this right.
On H1 chart:
Look for H4 fractal [this will print after 4 x H1 candles according to the indicator].
Then trade it back to the 100SMA.
Problem is, your H4 fractal isn't really confirmed until EIGHT x H1 candles............ or is it even TWELVE H1 candles? Not sure. But I know it's not confirmed after just 4 x H1 candles...................
Do you trade this live?
lets see
-
a4v4c4
- Trader
- Posts: 48
- Joined: Fri Dec 09, 2011 2:38 pm
Re: A and V pattern the most repeated pattern in the markets
:arrow:
You do not have the required permissions to view the files attached to this post.
-
GT3RS
- Trader
- Posts: 198
- Joined: Fri Dec 23, 2011 1:58 pm
Re: A and V pattern the most repeated pattern in the markets
I think I'm right in saying that normal Empty4 fractals print like this - I'll use a fractal high as an example:
Price moves up to form a high. The next candle doesn't break the high and closes.
Empty4 prints a fractal, BUT this fractal isn't confirmed until after the NEXT candle closes, having not been higher than the fractal high. So, the fractal COULD disappear.......
I'm pretty sure that in order to be CONFIRMED, a fractal high needs TWO candles immediately before it to have not gone higher and TWO candles AFTER it to have not gone higher.
I'm sure some of the coders on here can tell us if I'm right!
Price moves up to form a high. The next candle doesn't break the high and closes.
Empty4 prints a fractal, BUT this fractal isn't confirmed until after the NEXT candle closes, having not been higher than the fractal high. So, the fractal COULD disappear.......
I'm pretty sure that in order to be CONFIRMED, a fractal high needs TWO candles immediately before it to have not gone higher and TWO candles AFTER it to have not gone higher.
I'm sure some of the coders on here can tell us if I'm right!
- gaheitman
- Trader
- Posts: 655
- Joined: Tue Nov 15, 2011 10:55 pm
- Location: Richmond, VA, US
Re: A and V pattern the most repeated pattern in the markets
Yep, it takes two more bars to close before you can confirm the fractal. The code is here: http://codebase.mql4.com/source/1444
The relevant bits:
Main loop doesn't look at bar #'s less than 2:
And it makes sure that bars 1 and bar 0 don't exceed the high set 2 bars ago (plug in 2 for i in the code, since that is the most recent fractal it can set):
George
The relevant bits:
Main loop doesn't look at bar #'s less than 2:
Code: Select all
while(i>=2)Code: Select all
dCurrent=High[i];
if(dCurrent>High[i+1] && dCurrent>High[i+2] && dCurrent>High[i-1] && dCurrent>High[i-2])
{
bFound=true;
ExtUpFractalsBuffer[i]=dCurrent;
}-
GT3RS
- Trader
- Posts: 198
- Joined: Fri Dec 23, 2011 1:58 pm
Re: A and V pattern the most repeated pattern in the markets
Many thanks George.
[Didn't understand all the gobblydegook about code though!!]
Is the code you refer to the standard Empty4 fractals, or the MTF fractal indi posted on this thread?
[Didn't understand all the gobblydegook about code though!!]
Is the code you refer to the standard Empty4 fractals, or the MTF fractal indi posted on this thread?
-
a4v4c4
- Trader
- Posts: 48
- Joined: Fri Dec 09, 2011 2:38 pm
Re: A and V pattern the most repeated pattern in the markets
ok ok take it easy i am wrongGT3RS wrote:Many thanks George.![]()
[Didn't understand all the gobblydegook about code though!!]![]()
![]()
Is the code you refer to the standard Empty4 fractals, or the MTF fractal indi posted on this thread?
if u have an idea say it
i will think about Other Solutions
-
GT3RS
- Trader
- Posts: 198
- Joined: Fri Dec 23, 2011 1:58 pm
Re: A and V pattern the most repeated pattern in the markets
Hi mate!!
I wasn't having a go at you! I'm very interested in your ideas, but they are sometimes a little incomplete.
You can still trade the way you have outlined, but bear in mind the H4 fractal isn't confirmed for another 4 bars.
I wasn't having a go at you! I'm very interested in your ideas, but they are sometimes a little incomplete.
You can still trade the way you have outlined, but bear in mind the H4 fractal isn't confirmed for another 4 bars.