No. Or blocks are to be used 'horizontally', not 'vertically', as in your image. The way it is used now is acting as an AND block.
Posts made by l'andorrà
-
RE: Using the OR controlling blockposted in Questions & Answers
-
RE: Setting SL & restriction ifposted in Questions & Answers
I guess that way to express the SL is not correct. This is why it doesn't work. I tried to find the formula to translate money into pips, but couln't find it. Could Mr. roar give us a hand, please?
-
RE: Close positions at the end of the candleposted in Questions & Answers
I reread your fisrt post and I can't see you're looking for any issue to be fixed. Does your project wotrk correctly?
-
RE: RSI condition about Valueposted in Questions & Answers
Yes, I am. I got you in my contact list IIRC.
-
RE: Drawing 2 nearest horizontal lines (help)posted in Questions & Answers
q8carpenter is right. Can you please share your project to take a look at it?
-
RE: Send Signal to Phone with Symbol, Entry Price, TP and SLposted in Questions & Answers
Just curious. I never tried to implement a phone notification. Can you get them on your phone WITHOUT keying in the Metaquotes ID?
-
RE: RSI condition about Valueposted in Questions & Answers
Please let us take a look at your project now. I'm sure that it'll be very different from the last time.

-
RE: Crossover Blockposted in Questions & Answers
Then you will need a counter. Select the current initial candle as counter 1 and then check the condition for the next 5 counters.
-
RE: Fractual Break out EA for MT4posted in General Discussions
Sorry but. Isn't this rhang's idea? Are rhang and you the same person?
-
RE: Total gains or loss operationsposted in Questions & Answers
You can try this for the winners only and duplicate it for losers (not tested):
https://fxdreema.com/shared/NFCWPM3Hc
Please remember that you will need to limitate the maximum number of closed trades to seach by the 'For each closed trade' block.
-
RE: Only accept one direction EAposted in Questions & Answers
True. There is no good solution here, just the bad and the worse one.

-
RE: Initialize Custom Indicatorposted in Questions & Answers
That it will never be identified by the EA. You need to integrate the custom indicator within the EA so that objects can be searched for and identified. Otherwise you will not be able to use it.
-
RE: Close positions at the end of the candleposted in Questions & Answers
In that case the first image's logic is wrong. You need an open trade to remove a pending order. That means that if there is no open trade right now, no pending order will be removed.
-
RE: TEST PREZZOposted in General Discussions
Ok. Let's begin at the beginning. What do you exactly need?
-
RE: Setting SL & restriction ifposted in Questions & Answers
Now they are all the same. However, I'm not sure yet about your way to canculate the SL. Have you tried it independently of this project? This is the first time I see that formula.
-
RE: Open Trade When Pips Away From Stop-Lossposted in Questions & Answers
I strongly recommend you to use the 'on trade' tab. Not necessarily as per my recommended thread, but certainly it would fix your problem.
-
RE: Initialize Custom Indicatorposted in Questions & Answers
If ot is drawing object you can alway find them by using a 'For each object' block. Just look at the name of each object and seach for them to identify them.
-
RE: Only accept one direction EAposted in Questions & Answers
One option is programming your EA in fxDreema to immediately close every buy trade opened by the other EA. It's not efficient, but effective.
-
RE: Total gains or loss operationsposted in Questions & Answers
The you can create two variables, one for gains and another one for losses. Compare each closed trade if it is >0 or <0 to put the in one side or the other. Then create a loop to count them all headed by a 'For each closed trade' block.