Greg
The attached revision now updates correctly in real time.
Alex
The attached revision now updates correctly in real time.
Alex
if(T3Average>T3Average_1 && vStochFast>vStochSlow && vCCI > vCCI_1) {
drawShapeRelative(0, open(), Shape.SQUARE, null, Color.darkgreen, Shape.RIGHT, getValue("rawtime")+"SAR1");
Alert.playSound("C:\\Program Files\\eSignal\\Sounds\\buzz.wav"); // doesn't work
drawTextAbsolute(1, 30, " Long Entry " + open() + " ", Color.darkgreen, null, Text.RELATIVETOLEFT|
Text.RELATIVETOBOTTOM|Text.FRAME, "Arial", 11, "text1");
}else{
removeShape(getValue("rawtime")+"SAR1");
}
Comment