Is there any way that I can draw a circle so I can control the size? The only way I can find to draw a circle is using drawShapeRelative, which draws a small circle, but I see no way to control the size of it.
Dale
Dale
function preMain() {
setPriceStudy(true);
setStudyTitle("sample");
}
function main() {
if(getCurrentBarIndex() == 0) {
addLineTool(LineTool.CIRCLE, -8, high()+50, 8, low()-50, 1, Color.blue, "circle1");
}
}
Comment