Exit a trade after 5 mins

Hi @Streak
I want to exit a trade after 10 mins from the entry, is it possible.
Ex: i took a trade at 9:20 AM and i want to exit the trade at 9:30 AM irrespective of the P&L.

can you please help.

Off course…You can exit any time even after 1 sec.

1 Like

Sorry for the confusion, how can i put an exit condition in Streak to exit after 10 mins.

@Streak can you please help here

Hi @sai_12398

You can use the following exit condition for this, assuming your timeframe is 5min.

Period min(1, Abs( Close(0) - Trade candle(Close,0) ) ) higher than equal to 0.01

If your timeframe is 10 min,

Abs( Close(0) - Trade candle(Close,0) ) higher than equal to 0.01

1 Like