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.
// 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]