Good afternoon everyone,
I am working on a RSI oversold screener but I want to screen only stocks above $ 5 billion market cap, or above $30 in price if market cap code is not available.
I would be ever so grateful for your help.
Sorry for my late reply, there you go (cap data is not avilable, only traded volumes) with the price filter:
c1 = rsi[14](close) < 30 //RSI sits in OverSold territory
c2 = close > 30 //Price > 30 currency units
SCREENER[c1 AND c2](close AS "Price")