Close after 5 bars

 

Please , can anyone tell me the code for this:

"close a trade after 5 bars"

Thankx

Carllos

 

Define static global variable:

static int barsAtStart;

After placing order make an assignment

barsAtStart = Bars;

Then if following condition is true close order:

if(Bars - barsAtStart >= 5)

 
 
Reason: