Stop Trading after TP and wait for 1 hour.
-
Sometimes, an EA opens a trade right away after a TP whenever the condition is still valid.
Is it possible that the EA pauses the conditions after a set period of time then resumes once after an hour or something?
-
@pipsondeck Yes, you can do it. You can specify the minimum time to pass from the last open or closed trade like this:

If you connect those blocks immediately above the buy/sell now block. No new trade will be open for 1 hours since the last open trade. If the trade was closed, you will have to use a 'for each closed trade' block instead.
-
@l-andorrà basically that condition is like a once per bay(1hour) if i understood your explanation clearly.
If i want it to time after a closed trade, then i will use for each closed trade block.
Kindly confirm. Thank you.