Each signal is supposed to draw a rectangle.
But usually what happens it that only the last rectangle appears.
(I think once, I saw all the rectangles)
I am using unique tags.
I'm using
Random random = new Random(); int randomNumber = random.Next(0, 1000); Draw.Rectangle(this, "tag" + randomNumber, widthBars, High[widthBars] - TickSize, 0, Low[0] + TickSize, Brushes.Blue);

Comment