I'm trying without success to get alerts to fire in efs. First, I went to the "Trade" drop-down and set up email--a test works as it's supposed to. I also set a simple "price above" alert in the alert list, and it sounds (with "train.wav") and emails, as advertised.
But I can't make these things happen in efs:
I added these lines to some code that fires upon startup of a script:
Alert.email( "email test" );
Alert.playSound( "train.wav" );
Alert.addToList( "IBM", "Breakout!", Color.green, Color.black );
debugPrintln( "did email go?" );
The debug line prints to the formula output, the indicator loads and displays as it should, but none of the alert functions occur.
What am I doing wrong?
But I can't make these things happen in efs:
I added these lines to some code that fires upon startup of a script:
Alert.email( "email test" );
Alert.playSound( "train.wav" );
Alert.addToList( "IBM", "Breakout!", Color.green, Color.black );
debugPrintln( "did email go?" );
The debug line prints to the formula output, the indicator loads and displays as it should, but none of the alert functions occur.
What am I doing wrong?
Comment