Strong Technical Attributes Scan
The following weekly scan looks for stocks with strong technical attributes. You will need to load up the attached custom indicators I've created for the CumulativeForceIndex.itf and Cumulative ForceIndex Rising.itf, which I've placed in zip files. So they need to be unzipped and uploaded into prorealtime in order for the scan to function.
Below is the code for the Strong Technical Attributes Scan:
Code:
indicator1 = CALL "Cumulative ForceIndex Rising"
c1 = (indicator1 = 1)
indicator2 = CALL "10MA Rising"
c2 = (indicator2 = 1)
indicator3 = CALL "30MA Rising"
c3 = (indicator3 = 1)
indicator4 = CALL "30Week_WMA_Rising"
c4 = (indicator4 = 1)
indicator5 = CALL "Kijun-Sen Above"
c5 = (indicator5 = 1)
indicator6 = Volume
indicator7 = Average[52](Volume)
c6 = (indicator6 > indicator7)
Condition1 = (Close[0]-Close[1]) / AverageTrueRange[52](close)
SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6] (Condition1 AS "ATR change")
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.