Support Board
Date/Time: Wed, 27 Nov 2024 15:39:00 +0000
Post From: Alert Question
[2015-05-10 13:50:20] |
Sawtooth - Posts: 4120 |
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) |