Login Page - Create Account

Support Board


Date/Time: Sat, 04 May 2024 14:18:37 +0000



Post From: Alert settings

[2020-07-06 16:48:11]
bradh - Posts: 854
In the Box labeled Alert Condition, you need to enter an Alert Formula, which uses a specific format. Look here: Study/Chart Alerts And Scanning: Alert Formula Examples

You are getting "Alert Formula Error - Error #SYNTAX! / Formula =+200-200" because you didn't write the formula correctly.

The Formula needs to refer to the Study ID and SG you care about. For example, if the CCI study ("Commodity Channel Index") is ID1, then the CCI SG is SG1. You can then write an alert formula using your limits, and the study ID.

If you want to alert when CCI is > 200 the formula would look like this:
=ID1.SG1>200

for less than -200:
=ID1.SG1<-200


For either condition to be true:

=OR(ID1.SG1>200,ID1.SG1<-200)