Hey Alex,
I am using the function drawShapeRelative(). I am noticing that if the function is called two separate times from within the same script for a single bar one of the shapes will not show up.
For example:
drawShapeRelative(0, low(), Shape.UPARROW, "", Color.RGB(255,255,255), Shape.BOTTOM)
drawShapeRelative(0, low()-3, Shape.CIRCLE, "", Color.RGB(255,255,255), Shape.BOTTOM)
This will draw the white circle but NOT the white up arrow. If I comment out the bottom line, of course, the white up arrow will show up. Any ideas?
I am using the function drawShapeRelative(). I am noticing that if the function is called two separate times from within the same script for a single bar one of the shapes will not show up.
For example:
drawShapeRelative(0, low(), Shape.UPARROW, "", Color.RGB(255,255,255), Shape.BOTTOM)
drawShapeRelative(0, low()-3, Shape.CIRCLE, "", Color.RGB(255,255,255), Shape.BOTTOM)
This will draw the white circle but NOT the white up arrow. If I comment out the bottom line, of course, the white up arrow will show up. Any ideas?
Comment