Registered User Joined: 12/26/2009 Posts: 50
|
Hi, I'm trying to create a condition to select stock that that had a low at least 5% below yesterday's close. Something seems to be wrong. Does someone can tell me if this is the right way to do it:
If Price.Low < Price.Close(1) < 0.97 Then Pass
Thanks,
|
Registered User Joined: 12/26/2009 Posts: 50
|
it's 0.95 not 0.97
|
Registered User Joined: 12/26/2009 Posts: 50
|
Thanks I got it:
If Price.Last <= .95 * Price.Low(1) Then Pass
|