This stock screener is for long only strategy. It detects a potential continuation of a trend after a consolidation, as it has many filters it returns only a few stocks but with great potential. Entry would be made with stop order at last candle high price plus half of it. Beware of round price when placing stop orders.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
indicator1 = close indicator2 = Average[30](close) indicator3 = Average[200](close) indicator4 = Average[7](close) // trend detection c1 = ((indicator1 > indicator2[1]) AND (indicator2[1] < indicator2) AND (indicator2 > indicator3) AND (Close[1] > indicator2[1])) // breakout detection breakout = ((Open < Close) AND ((Open[1] <= indicator4) OR (Low[1] <= indicator4)) AND Close > Highest[5](High)[1]) // higher past price histo = High > Highest[20](High)[1] // slope angle c2 = ((indicator2 / indicator2[20]) -1) *10 > 0.25 // no price too far from average criteria = (CLOSE / indicator2 - 1) * 100 c3 = criteria < 10 // no gap filtering noGap =((( min (dopen(0) , dclose(0)) / max (dopen(1) , dclose(1)))- 1) * 100) < 0.3 SCREENER[c1 AND c2 AND c3 AND breakout AND histo AND noGap] |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials