Author: arena74
It helps to find stocks with a price under the SAR.Declining money flow ensures that there is no divergence. I favor stocks with prices under the SAR sorted by highest K of stochastic. The Volume must be greater than the Average Volume. It is good when DI- crosses above the DI+. This is a good moment to enter into a trade.
REM The following is related to this timescale: daily
TIMEFRAME(daily)
indicator1 = SAR[0.02,0.02,0.2]
c1 = (close CROSSES UNDER indicator1)
indicator2 = Average[20](Volume)
c2 = (Volume >= indicator2)
c3 = (indicator2 >= 250000.0)
indicator3 = MoneyFlow[21](close)
indicator4 = MoneyFlow[21](Dclose(1))
c4 = (indicator3 < indicator4)
criteria = Stochastic[14,4](close)
SCREENER[c1 AND c2 AND c3 AND c4] (criteria AS"%K")