Support Board
Date/Time: Sat, 13 Sep 2025 19:39:13 +0000
Post From: Automated Trading
[2019-03-01 20:59:09] |
Sawtooth - Posts: 4263 |
The formula is properly written as: =AND(C3-D3>0.06,C3<B3) and says: the current bar's range is greater than 0.06 points (not ticks), and the current bar's high is less than the current bar's open. If you want to reference ticks instead of points, you must reference the tick size in J21: =AND(C3-D3>6*$J$21,C3<B3) |