// The following code is related to this timescale:weekly
TIMEFRAME(weekly)
indicator1 = Average[25](Volume)
c1 = (indicator1 >= 750000)
// The following code is related to this timescale:weekly
TIMEFRAME(weekly)
indicator2, ignored = CALL "SEQUENSES SCANNING (v1)"
c2 = (indicator2[1] < 0)
// The following code is related to this timescale:weekly
TIMEFRAME(weekly)
indicator3, ignored = CALL "SEQUENSES SCANNING (v1)"
c3 = (indicator3 > 0)
TIMEFRAME(weekly)
indicator4 = Average[10](close)
c4 = (close > indicator4)
TIMEFRAME(weekly)
indicator5 = Average[10](close)
c5 = (close[4] > indicator5[4])
TIMEFRAME(weekly)
indicator6 = Average[10](close)
c6 = (close[8] > indicator6[8])
TIMEFRAME(weekly)
indicator7 = Average[10](close)
c7 = (close[12] > indicator7[12])
// The following code is related to this timescale:daily
TIMEFRAME(weekly)
indicator8 = Average[10](close)
c8 = (close[16] > indicator8[16])
// The following code is related to this timescale:DEFAULT
TIMEFRAME(weekly)
SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7 AND c8] ((close/DClose(1)-1)*100 AS "%Chg yest.")