I'm using eSignal ver: 12.2 Update 1
Ref: drawShapeRelative function
Shape.LEFT plots on the right side of the candle (green dot in the picture)
Shape.RIGHT plots on the left side of the candle (red dot in the picture)
Script follows:
Seems to be a bug.
Wayne
Ref: drawShapeRelative function
Shape.LEFT plots on the right side of the candle (green dot in the picture)
Shape.RIGHT plots on the left side of the candle (red dot in the picture)
Script follows:
PHP Code:
function preMain(){
setPriceStudy(true);
}
function main(){
if(isLastBarOnChart()){
drawShapeRelative(0, low(), Shape.CIRCLE, "", Color.green, Shape.LEFT, "L");
drawShapeRelative(0, low(), Shape.CIRCLE, "", Color.red, Shape.RIGHT, "R");
}
}
Wayne
Comment