if condition one is =yes then wait untill condition two...
-
@andyjames hello will this conditon apply if i want to check to indictors conditions
-
Hi,
I need help.
I want to create the following function from blocks.
If the first condition-block is "yes" then wait until the following condition-block is "yes".
I seach a possibility that condition block can wait until the nexte condition-block will be excecute with an output.Thanks in advance
Dieter
-
Under "Tick" workfield everything happens on every tick, so when both conditions are "yes" at the same time, the logic continues to the next connected blocks.
-
Is there a possibility to solfe this proplem?
-
I can't find a problem, this is how expert advisors work.
-
Sorry,this is not a problem.
How can I solve this item that condition is yes, then wait until condition two is yes. This is the logical operation then?
-
No block waits for something to happen! "Condition" block is a simple "if" ckeck, nothing more.
-
Hi Dieter,
I think I know what you need to do. You may have 2 conditions which need satisfying but not necessarily at the same time. IE, MACD bullish divergence occurs then you wait for the bull candle for example.
What I would do is create a numeric variable 'MACD_Bull' and set this to 0. When a bullish MACD diversion happens you can set MACD_Bull to 1, when bearish MACD diversion happens set MACD_Bull to 0. Or however your logic works.
Then test the condition of the variable and if 1 perform your other check.
Did a quick project to show what I mean..
http://fxdreema.com/shared/p4YBuV5Gc
Andy
-
.....you can use also the flags!
see here: http://fxdreema.com/shared/yn3Pkytgdfirst cross stochastic. After verification condition ema and reset flag.
There are many ways in fxdreema!!!
-
Initially, yes, but it will depend on your specific conditions.