would it be using loop?
MOve is series of same bars, long bars or short bars.
string volumeDisplay = (VOL()[1]).ToString();
if(Close[1] < Open[1] && Close[2] > Open[2] ){
Draw.Text(this, "Tag33" + CurrentBar, true, volumeDisplay, 0, High[0] + (5 * TickSize), 0, Brushes.White, theFont, TextAlignment.Center, Brushes.Transparent, Brushes.Transparent, 0);
}

Comment