I created a strategy where, when a certain condition is met, the trade gets executed(entry/exit), but this happens only once, which means every node gets executed once; it won’t check again for the entry condition node as it was previously executed.
So it means we are not allowed to recheck the same condition (loop) ?
By setting it as recurring, the automation will keep checking the conditions instead of executing just once. This helps in re-evaluating the same condition multiple times as per your setup.
Thanks for the reply, but this will re-run after a specific time(min/hour), not based on a condition.
What I want is 1 round of my strategy executed, and I want to restart again
Refer attachment,
Left side flow,
Upon meeting a certain condition, execute entry(send alert for now)
Later, it will check the condition for exit,
If the exit condition is met, I trigger an alert here. Now, I want it to look for the entry condition again…