Login Page - Create Account

Support Board


Date/Time: Fri, 26 Apr 2024 09:40:39 +0000



[User Discussion] - Alert bar syntax for % difference

View Count: 1254

[2019-06-06 15:48:16]
Sawtooth - Posts: 3976
For a ratio of High minus Close to the bar's range:
=(H-C)/(H-L)
For a ratio of Close minus Low to the bar's range:
=(C-L)/(H-L)

To apply these formulas to a study's values, the study must output OHLC values in separate subgraphs, e.g. the Daily OHLC study as ID1:
=(ID1.SG2-ID1.SG4)/(ID1.SG2-ID1.SG3)
=(ID1.SG4-ID1.SG3)/(ID1.SG2-ID1.SG3)

To get an alert greater than 60%:
=(H-C)/(H-L)>0.6
=(C-L)/(H-L)>0.6

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

Login

Login Page - Create Account