Login Page - Create Account

Support Board


Date/Time: Fri, 29 Nov 2024 21:49:59 +0000



Alert Condition Formula Help

View Count: 288

[2023-01-16 12:21:10]
User513662 - Posts: 90
Hello I am trying to do the following alert condition but the formula I am using does not seem to work.

The alert condition is:
- Bar closes in the bottom 25% of its range
- The bar length is at least 35 ticks

This is the following formula I am using:

AND(C >= L, C <= ((H - L) * .25 + L) , ABS(H-L) >= 35)

Would someone please assist in seeing where I am going wrong?

Many thanks.
[2023-01-16 13:58:32]
Sawtooth - Posts: 4122
Try this:
=AND(C >= L, C <= ((H - L) * .25 + L) , ABS(H-L) >= 35*TICKSIZE)
[2023-01-16 14:04:14]
User513662 - Posts: 90
Many thanks works perfectly! Greatly appreciated.

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

Login

Login Page - Create Account