Screener 1
Screener 1
minVolume = 100000
sma5 = ta.sma(dailyClose, 5)
trendUp = (sma5 > sma20) and (sma20 > sma50) and (sma50 > sma150) and (sma150 > sma200)
// **MACD Conditions**
valid = highVolume and trendUp and rsiAbove70 and rsiAbove55 and nearHigh and notExtended and
macdBullish and macdAboveZero
if bar_index % 5 == 0
table.clear(resultTable, 0, 0)
// **Table Header**
// **Data**
alertcondition(valid, title="Ticker Screener Alert", message="🚀 This Ticker meets all trend, volume,
momentum, and MACD conditions!")