Support Board
Date/Time: Tue, 26 Aug 2025 13:23:30 +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: 4261 |
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) |