Login Page - Create Account

Support Board


Date/Time: Sat, 12 Jul 2025 17:05:01 +0000



Post From: Alert Question

[2015-05-10 13:50:20]
Sawtooth - Posts: 4238
Each of these will alert if greater than 3 ticks:

wick:
=(H-MAX(O,C))/TICKSIZE>3
tail:
=(MIN(O,C)-L)/TICKSIZE>3
body:
=ABS(O-C)/TICKSIZE>3

You can combine them, like this:
OR((H-MAX(O,C))/TICKSIZE>3,(MIN(O,C)-L)/TICKSIZE>3)