confluence
-
can someone explain how can i trade this condition
if indicator x gives same signal for 3 timeframes open order
ie if indicator x has sell signal on h1,h2,h3 open sell and vice versa and how do we reset signal to avoid ea opening another same order after cclosing current trade -
The no trade block will limit to 1 trade,
-
@jstap no but as soon trade closes it will open another one immediately
-
You need to add some conditions, a reason for the EA to place a trade or not place a trade, use something like a flag, when trade placed turn flag to false, when needed turn flag to true, check flag above buy/sell.
-
@mr-lenny try with variable.. signal on h1 variable1=1, signal on h2 variable2=1, signal on h3 variable3=1.
then using block condition, if variable1=1, variable2=1, variable3=1, then put entry.
reset the variable1,2,3=0, if trade closed