Support Board
Date/Time: Thu, 06 Nov 2025 09:01:50 +0000
Post From: Alert Question
| [2015-05-10 13:50:20] |
| Sawtooth - Posts: 4285 |
|
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) |
