Hello:
I have a formula that creates an alert based on certain criteria. It has been working for several months. Today it stopped working.
I've tried a test formula, but even this doesn't create an alert using Alert.addToList. I can print out using debugPrintln, but I can't create any more alerts.
Here is the test code:
function preMain() {
setPriceStudy(true);
setStudyTitle("Test");
setCursorLabelName("Test");
}
function main() {
Alert.addToList("AA", "hello", Color.blue, Color.green);
debugPrintln("hello");
}
Is there anything I can do about this?
Thanks.
I have a formula that creates an alert based on certain criteria. It has been working for several months. Today it stopped working.
I've tried a test formula, but even this doesn't create an alert using Alert.addToList. I can print out using debugPrintln, but I can't create any more alerts.
Here is the test code:
function preMain() {
setPriceStudy(true);
setStudyTitle("Test");
setCursorLabelName("Test");
}
function main() {
Alert.addToList("AA", "hello", Color.blue, Color.green);
debugPrintln("hello");
}
Is there anything I can do about this?
Thanks.
Comment