Barry Cohen
 Sage
      Posts: 6338
Joined: 1/19/2004
User Profile |
Yes, you can use a formula like this to color red when one bar is at a lower level than the previous bar: Indicator < Indicator[1]
If you want a greater slope, you can add additional previous bars like this: Indicator < Indicator[1] AND Indicator[1] < Indicator[2].
|