How do you screen for shares that are just below the 100 day moving average and the volume is at it’s highest 90 day exponential moving average. Like in the example below. Foxtons is just below the 100 day moving average near the end of June and their is a large volume sell.
And finally, how do I change volume in this code so it is sell volume instead of buy volume but the price is above the moving averages? Thank you very much, it will make my year if you could help with these!
c2 = Close > 5.00
indicator2 = Volume
indicator3 = (Average[20](Volume)) * 1.5
c3 = indicator2 > indicator3
c4 = (average[20] (Volume)) > 200000
indicator4 = Average[40](Close)
indicator5 = Average[120](Close)
c5 = (indicator4 >= indicator5)
indicator6 = (highest[40](high[1]))
c6 = (close >= indicator6)
criteria = volume
SCREENER [c2 AND c3 AND c4 AND c5 and c6] (criteria AS “volume”)