However, I only want to the rectangle to show when my criteria is met, but once drawn, it is always there.
What I want to do is something like this:
if(currentBar<=10) {
Draw.Rectangle(this,"RectangleName",.....)
}
else Remove Rectangle("RectangleName")
Is this possible?

Comment