Repeated checking for condition

Hi ,
I want to build my position for every super trend signal (5 mins). So i have created two sets . One for super trend Buy signal and other for super trend sell signal. It works fine when there are only two super trend signals per day. In case if there are multiple signals then I want the same set to keep checking conditions and build my position without hampering the repair condition of the existing position.

Is there a way to do it ?

Entry for Buy

CLOSE (-1) > ST(-1)
AND
CLOSE(-2) < ST (-2)

Same logic but in opposite way for SELL Entry

Untill Universal Exit, it keeps taking Entry every time condition satisfied

1 Like

Im using the same formula for Buy and Sell. But it doesnt seem like its checking condition after one signal. Are you sure that just two sets would keep checking for entry conditions over and over again.

Thanks for your reply :slight_smile:

It should work provided you don’t have any other conditions in Entry

1 Like

Thanks a lot. Let me try this tomorrow !!