if(Closes[1][1] >= Closes[0][0])
{
EnterLong(0,1,"Long");
}
if(Close[1]<= Close[0] && Close[2] >= Close[1])
{
EnterLong();
}
I made an indicator that draws an arrow each time the multinstrument condition is met, and what I also noticed is that sometimes the arrow is drawn well after the close of Closes[0][0], and during the next bar. I'd like to know if this is typical of multi instrument scripts, to cause a delay, and if not what could be causing this?

Comment