Login Page - Create Account

Support Board


Date/Time: Fri, 24 Jan 2025 09:59:15 +0000



Post From: Alert on the color of the indicator.

[2019-01-06 21:55:02]
Sawtooth - Posts: 4162
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))