Triple MACD cross confirmation (Please help)
-
Hiya guys.
I need some help achieving this confirmation of 3 consecutive crosses below the zero line.
I have added a picture to show what i am trying to achieve with the MACD.The picture below is a buy setup.
So price must be under the zero level,First it must cross bullish, (Cross 1)
Second it must recross bearish, (Cross 2)
Third it must recross bullish (Cross 3 Entry)All crosses must happen under the zero line without ever going above the zero line.
How can i achieve something like this?I am also looking for a way to detect divergence of this scale. The divergence detect blocks do not seem to pick up divergence that happens this close. It picks up much larger divergence's which are too big. Is there also a way to detect the divergence of this scale?

Thanks!
-
@highmoose Second question first. The most efficient way to detect divergences is by usinga custom indicator. Forget the option fxDreema offers by default.
On your first question you will need to create three boolean variables (true/false). Only when all of three are true/true/true a trade is open. Otherwise it isn't.
-
Awesome, thanks for the reply. Im not too educated on using variables but i gave it a try.
This is what i have so far, but it doesnt seem to place any trades when i test it?
https://fxdreema.com/shared/x5zwOGKmcI have not added divegence yet. I want to get the triple cross working first.
-
Because yout block 36 is running before your block 47 and variables "cross1" and "cross2" will always be false when you run block 47.
I would changed the variables in the "Buy now" and "Sell now" block instead.

-
Thanks for your help guys!
So i found the problem for it not opening trades.. and it was down to a silly mistake in the 'If variable true' blocksHere's what i had:

Heres what i needed to be:

Everything seems to be working fine now.
Now to add in a divergence indicator that ready how i need it to!Thanks for your help guys