Login Page - Create Account

Support Board


Date/Time: Wed, 27 Nov 2024 20:31:32 +0000



Alerts

View Count: 318

[2023-06-09 17:21:27]
User585993 - Posts: 83
What formula should I use if I want an alert when the cumulative delta is: 500K ( negative alert) and -500K ( positive alert)
[2023-06-09 18:33:17]
John - SC Support - Posts: 36344
The Close subgraph gives you the actual Cumulative Delta value at any time, so you would want to test against this. The formula for one of these is the following:
=ID1.SG4 > 500000

If you want to test for either situation, it would be the following:
=OR(ID1.SG4 > 500000, ID1.SG4 < 500000)

ID1 is the ID of the Cumulative Delta study.
For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing
[2023-07-10 15:56:24]
User585993 - Posts: 83
is there a way to limit the alert to a specific time period like from 3:00pm-3:05pm?
[2023-07-10 16:02:40]
User585993 - Posts: 83
I Have this formula so far

=AND (ID2.SG4 > 50000, BARTIME>TIMEVALUE("14:59:59"),BARTIME<TIMEVALUE("15:00:01"))

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

Login

Login Page - Create Account