Login Page - Create Account

Support Board


Date/Time: Sun, 15 Jun 2025 06:58:30 +0000



How can I get alert and visual color bar when there is a delta divergente of at least 500?

View Count: 82

[2025-06-11 12:34:40]
rebeccaemme - Posts: 19
I would get alert and visual color difference bar when there is a Delta Divergence of at least -500 delta close with bullish candle or at least 500 positive delta but close with bearish candle. I have try this formula but is not working

=OR(
AND(C > O, (BidVolume - AskVolume) <= -500),
AND(C < O, (BidVolume - AskVolume) >= 500)
)

How can I correclty write the formula on color bar based on alert condition study? Thank you so much.
[2025-06-11 13:38:43]
cmet - Posts: 706
Just need to tweak the syntax. Used zero in example below so it's easy to test.

=OR(
AND(C > O, AV-BV < 0),
AND(C < O, AV-BV > 0)
)

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account