Login Page - Create Account

Support Board


Date/Time: Mon, 06 May 2024 11:12:32 +0000



Post From: Alert on the color of the indicator.

[2019-01-06 21:55:02]
Sawtooth - Posts: 3993
The blue bars are up-sloped, so use a formula like this for an alert at every blue bar above zero:
=AND(ID5.SG1>ID5.SG1[-1],ID5.SG1>0)

If you want an alert at the first blue bar above zero, use this:
=OR(
AND(ID5.SG1[-2]>ID5.SG1[-1],ID5.SG1>ID5.SG1[-1],ID5.SG1>0),
AND(ID5.SG1>ID5.SG1[-1],ID5.SG1[-1]<0,ID5.SG1>0))