Support Board
Date/Time: Tue, 01 Jul 2025 03:12:45 +0000
Post From: Automated Trading
[2019-03-01 20:59:09] |
Sawtooth - Posts: 4231 |
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) |