Login Page - Create Account

Support Board


Date/Time: Sat, 15 Nov 2025 12:59:55 +0000



Post From: Formula Alerts error

[2025-11-14 18:31:03]
rebeccaemme - Posts: 30
Hello,
I have try to creare a color bar based condition formula for detect the following pattern:

The previous bar has a large delta At least 2000 (negative or positive)

The current bar must be in the opposite direction of the previous bar (bullish after bearish, or bearish after bullish).
And this current bar must break the high (for bullish scenario) or the low (for bearish scenario).

And this current bar must have a low delta opposite to the previus bar. EXAMPLE the previous bar was bearish with a Delta of -2000 and This Currently bur must break his high and has a delta only of +400.
I have tried to create the formula in this way however give me error
(
ABS(AV[-1]-BV[-1])>=2000
AND C[-1]<O[-1]
AND C>O
AND H>H[-1]
AND ABS(AV-BV)<=400
)
OR
(
ABS(AV[-1]-BV[-1])>=2000
AND C[-1]>O[-1]
AND C<O
AND L<L[-1]
AND ABS(AV-BV)<=400
)

Please I hope someone could help me to know where was wrong!
Thank you