"Once per Bar"
-
Hello,
How does "Once per Bar" work because my EA was giving me multiple signals and I placed at the top before the first condition and now I'm no longer getting signals, I also placed it at the bottom and still was not getting signals.
-
It depends on what you want to do. In general It will allow to execute all blocks below it just once per each candle being found or created on chart.
-
@l-andorrà This is what I want it to do,
https://fxdreema.com/shared/dgihEyKLd
For a Sell setup, 2 bullish candles and the 3rd candle is a Bearish candle. The Bearish candle low is below candle ID(2) open. Currently as soon as this happens (reaches the low) it starts to alert continuously until the candle closes and also the next candle, I want it to just alert once and stop. -
@bonglish You can alway create a boolen variable controlling it. Initiallize it as false and when conditions are met for the first time modify it to false. That will stop sending new signals until it is reinitialized again.