Hi All! Hope you guys are safe 😉 Screener: The code below works but how can I have an additional colomn “saying” Bull or Bear signal please ?? 2 time frames, 2 conditions in each… Thank you ! REM Condition 1: MACD weekly > 0 and decreasing TIMEFRAME(weekly) REM RSIWL = RSI Weekly Long RSIWL = RSI[5](close) c1 = (RSIWL > RSIWL[1]) REM RSIWS = RSI Weekly Short RSIWS = RSI[5](close) c11 = (RSIWS<RSIWS[1]) TIMEFRAME(daily) REM RSIDL = RSI Daily Long RSIDL = RSI[5](close) c2 = (RSIDL>RSIDL[1]) REM RSIDS = RSI Daily Short RSIDS = RSI[5](close) c22 = (RSIDS<RSIDS[1]) SCREENER [(c1 AND c2) OR (c11 AND c22)]