I am trying to extend my efs so as to modify the color of the basic study volume based on my criteria:
function onAction1() {
drawShapeRelative(0, low(), Shape.CIRCLE, "", Color.RGB(0,255,0), Shape.LEFT);
vLastAlert = 1;
}
Currently, instead of the desired action, I have Shape.CIRCLE, then I combine the efs w/ the volume pane.
function onAction1() {
drawShapeRelative(0, low(), Shape.CIRCLE, "", Color.RGB(0,255,0), Shape.LEFT);
vLastAlert = 1;
}
Currently, instead of the desired action, I have Shape.CIRCLE, then I combine the efs w/ the volume pane.
Comment