I'm using two draw objects to test it with, the arrows always draw, but the vertical line, rarely gets drawn.
if( (Time[0].Minute == Time[1].Minute) ) //test
{
DrawArrowUp("Same minute" + CurrentBar, false, 0, Low[0] - .25, Color.White);
DrawVerticalLine("Same minute",0,Color.White,DashStyle.Dash,2);
}

Comment