Platinum Customer
Joined: 12/2/2004 Posts: 20
|
Would you write this scan for me?
country is US] and [type = stock] and [Volume > 999,999] and [volume > yesterday's sma(60,volume)*4] and [close > yesterday's close] and [Close > 10.00] and [optionable is true]
for long opportunities and:
[country is US] and [type = stock] and [Volume > 999,999] and [volume > yesterday's sma(60,volume)*4] and [close < yesterday's close] and [Close > 10.00] and [optionable is true]
for short opportunites.
thank you.
Beth
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
Try this:
(long)
C>10 AND V>9999 AND V>AVGV60.1*4 AND C>C1
(short)
C>10 AND V>9999 AND V>AVGV60.1*4 AND C<C1
Thanks
diceman
|
Platinum Customer
Joined: 12/2/2004 Posts: 20
|
thank you. that worked!
Beth
|
Registered User Joined: 1/28/2005 Posts: 6,049
|
Great
|