Hi
How to program so that when the clock hits 2:30pm eastern, the efs sends an alert.addToList and alert.email, showing the last trade price and change?
I tried the following as a part of another formula but It didn't do anything at all. I also tried the Hour() and Minute().
if(getHour(0)== 14 && getMinute(0)== 30) {
Alert.addToList(getSymbol()+" "+getInterval(), "Market Close", Color.black, Color.red);
Alert.playSound("ding.wav");
Alert.email(getInterval()+" Market Close"+" "+formatPriceNumber(close(-1)), " ");
}
-Rupe
How to program so that when the clock hits 2:30pm eastern, the efs sends an alert.addToList and alert.email, showing the last trade price and change?
I tried the following as a part of another formula but It didn't do anything at all. I also tried the Hour() and Minute().
if(getHour(0)== 14 && getMinute(0)== 30) {
Alert.addToList(getSymbol()+" "+getInterval(), "Market Close", Color.black, Color.red);
Alert.playSound("ding.wav");
Alert.email(getInterval()+" Market Close"+" "+formatPriceNumber(close(-1)), " ");
}
-Rupe
Comment