Identifying short opportunities by screening for stocks that are just about to break 52 week low support line for a bearish breakout, and with MACD condition.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
// sample screener code //16.11.12019 //BY The NocTrader @ www.youtube.com/thenoctrader Timeframe(Weekly) LL = lowest[52](low) // Timeframe(Daily) c1 = close < average[50,0](close) p0 = close >= LL p1 = close <= (LL * 1.05) c2 = p0 And p1 c3 = average[50,0](volume) > 50000 c4 = close > 200 p2 = MACD[12,26,6](close [1]) > MACD[12,26,6](close) p3 = MACD[12,26,6](close) > 0 c5 = p2 and p3 // Timeframe(default) Result = c1 and c2 and c3 and c4 and c5 Screener[Result] |
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 :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials