Support Board
Date/Time: Wed, 10 Sep 2025 18:15:08 +0000
Post From: How can I get alert and visual color bar when there is a delta divergente of at least 500?
[2025-07-05 14:02:19] |
Sawtooth - Posts: 4263 |
How do I create a similar study to color the bar that has VOLUME >500 and DELTA difference at minimum 300 (positive or negative)
Move the OR to not include the V :=AND(V >=500 , OR(AND (BV-AV >= 300), AND (BV-AV <= -300))) You could also remove the unnecessary ANDs: =AND(V >=500 , OR(BV-AV >= 300, BV-AV <= -300)) If the positive and negative thresholds are always the same, you could use the ABS function instead of the OR: =AND(V>=500,ABS(BV-AV)>=300) |