Login Page - Create Account

Support Board


Date/Time: Thu, 02 May 2024 01:33:09 +0000



Volume Colored Based VOlume study help

View Count: 96

[2024-04-06 23:12:09]
User960930 - Posts: 26
Im trying to set a alert for this study any time volume is over 200k

this was formula i used but it not responsive.

= C[100000] > ID1.SG1

= V[100000] > ID1.SG1
[2024-04-06 23:23:20]
User960930 - Posts: 26
also how would i go about adding multiple alert on same study at different volume levels ?
[2024-04-08 15:15:25]
John - SC Support - Posts: 31293
To get an alert when the volume of a bar is greater than 200000 you would enter the following for the alert formula:
=V > 200000

The number within brackets is a bar offset. Refer to the following:
Study/Chart Alerts And Scanning: Referencing Data Other Than on the Last Bar/Column In the Chart

The easiest way to have an alert at multiple levels is to use multiple alerts. To do this, you would need to put an alert on a different study or in the Chart Settings. The reason for this is that an Alert needs to go from False to True in order to activate.

It could be done with a combination of AND() and OR() functions, but you would have to limit the range of the volume you are testing on. For example, to get an alert when volume is greater than 100000 and greater than 200000, you would have to do something like the following:
=OR(AND(V > 100000, V < 150000), V > 200000)

So in the above, you are limiting the test of greater than 100000 to be between 100000 and 150000. But if your numbers are close, then this can become problematic, as the volumes could jump enough that you would miss an alert.
For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing

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

Login

Login Page - Create Account