Login Page - Create Account

Support Board


Date/Time: Fri, 19 Apr 2024 11:19:25 +0000



Post From: Automated Trading

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