Using high() or low() as the yValue, the shape is drawn centered on the high or the low of the price bar. What additional code is needed to move the shape a set increment away from the high() or low() so that the shape and the price bar are not touching?
For example:
drawShapeRelative(0, high(), Shape.CIRCLE, "", Color.yellow, Shape.TOP);
How is this modified to place the circle above the high() a distance equal to about the radius of the circle?
And:
drawShapeRelative(0, low(), Shape.CIRCLE, "", Color.yellow, Shape.TOP);
How is this modified to place the circle below the low() a distance equal to about the radius of the circle?
For example:
drawShapeRelative(0, high(), Shape.CIRCLE, "", Color.yellow, Shape.TOP);
How is this modified to place the circle above the high() a distance equal to about the radius of the circle?
And:
drawShapeRelative(0, low(), Shape.CIRCLE, "", Color.yellow, Shape.TOP);
How is this modified to place the circle below the low() a distance equal to about the radius of the circle?
Comment