RE: Code for Stock Scanners
Here's the simple scans in prorealtime's procreener to find stocks that are above their 50, 150 and 200 day moving averages.
Price Above 50 Day MA
Code:
Condition1 = Close > Average[50](close)
SCREENER [Condition1]
Price Above 150 Day MA
Code:
Condition1 = Close > Average[150](close)
SCREENER [Condition1]
Price Above 200 Day MA
Code:
Condition1 = Close > Average[200](close)
SCREENER [Condition1]
isatrader
Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.
Fate does not always let you fix the tuition fee. She delivers the educational wallop and presents her own bill - Reminiscences of a Stock Operator.