Login Page - Create Account

Support Board


Date/Time: Thu, 12 Mar 2026 16:00:10 +0000



Post From: Automated Trading

[2019-03-01 20:59:09]
Sawtooth - Posts: 4316
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)