Hi Guys,
Do you know how to add a label on the left top corner of the chart to this part of the formula???
For example if the computer shows me signal to sell, I would like to
have additional label on top of the screen telling me "S" (not on the chart itself) something like drawLabel...
Tnx Peter
if (nSignal < 0 && Strategy.isLong() == true) {
Strategy.doShort("ReversSHORT", Strategy.CLOSE,Strategy.THISBAR);
drawTextRelative(3, close(), "S", Color.black, Color.white, Text.FRAME | Text.LEFT | Text.BOLD, null, 20);
Alert.playSound("C:\Program Files\eSignal\Sounds\SNZD.wav");
Do you know how to add a label on the left top corner of the chart to this part of the formula???
For example if the computer shows me signal to sell, I would like to
have additional label on top of the screen telling me "S" (not on the chart itself) something like drawLabel...
Tnx Peter
if (nSignal < 0 && Strategy.isLong() == true) {
Strategy.doShort("ReversSHORT", Strategy.CLOSE,Strategy.THISBAR);
drawTextRelative(3, close(), "S", Color.black, Color.white, Text.FRAME | Text.LEFT | Text.BOLD, null, 20);
Alert.playSound("C:\Program Files\eSignal\Sounds\SNZD.wav");
Comment