This works for me:
https://fxdreema.com/shared/3yw4c6XOb
In Condition block crossover works like this... let's say we have MA1 vs MA2 and x<
MA1[0] < MA2[0] AND MA1[1] > MA2[1]
where [0] is the current candle, [1] is the previous candle.
When you compare indicator to value, then it will be like this... let's say we have RSI vs 75 with x<
RSI[0] < 75 AND RSI[1] > 75
But I think there are other problems. I wonder why you have so many blocks, all in parallel, with very small difference inside. The chance is that many of these conditions are true at the same thime, and because all of them are connected in parallel, multiple trades will be created. I tried it on M1 and the result is this: http://i.imgur.com/oeiAISl.png
For those parallel connection I can show you this: https://fxdreema.com/demo/mt4-or-logic
What are you trying to do actually? If it's something like trading when RSI rises or falls, then there are two blocks "Indicator rise" and "Indicator fall".
What is better than that is to write code, but we know that this takes time and knowledge 
And does not appear right in front of your eyes. Buy why you will want to manually confirm position, if not only for testing something, which is otherwise not a problem in demo account 