Registered User Joined: 6/1/2017 Posts: 14
|
Hi,
I want to make a scan to find an opening gap down less than 35% of the previous day's range, so, I wrote:
( -1 * (L>H1) + -2 * (H<L1) )<0.35*(H1-L1)
The result is not right, please help!
Cheer!
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
If by "gap down" you mean the high today is less than the low yesterday...
(H < L1) and (L1 - H) / (H1 - L1) < .35
|
Registered User Joined: 6/1/2017 Posts: 14
|
Great, Thank you StockGuy!
|