Login Page - Create Account

Support Board


Date/Time: Wed, 24 Apr 2024 06:51:39 +0000



Post From: Condition if Price close between n points from a level

[2019-09-11 03:16:18]
Chippstrader - Posts: 30
Hi,

I am looking for a condition where price close by certain points to that condition should alert me.

For e.g. I am using Globex low for NQ100 and if close of price within 5 points of Globex Low alert me.

I tried using below OR condition but this can miss calculating odd ticks.

How do I calculate if price close (Globex low - 5 points for that bar?) I don't want to try C <= (ID4.SG2-20*0.25) as it will draw all over the place.

Globex Low = ID4.SG2
NQ - 0.25 per tick value.

=OR (C = ID4.SG2+(20*0.25), C = ID4.SG2+(16*0.25), C = ID4.SG2+(12*0.25), C = ID4.SG2+(12*0.25), C = ID4.SG2+(08*0.25), C = ID4.SG2+(04*0.25))