How do i get the parabolic sar to work on 3 candles?
-
How do i get the parabolic sar to short when it is above 3 candles in a row and long when it is below 3 candles in a row? using mt5
-
Make a condition (Parabolic SAR > candle high) that will change a variable (+1) when it passes, then make another condition that passes (and executes the trade) when the variable hits 3. If the "Parabolic SAR" condition doesn't pass, the variable is reset to zero.
-
@moreirajbn Great advice.