How To Scan Your Favorite Watchlist For Oversold/Overbought | ThinkOrSwim

1 day ago
3

How To Scan Your Favorite Watchlist For Oversold/Overbought | ThinkOrSwim

#---------------------Code Begins-------------------------------
plot x = (RSI()."RSI" is less than 20) ;

assignbackgroundcolor(if RSI() < 20 then color.light_green else if RSI() > 78 then color.light_red else color.current);

x.assignvaluecolor(if RSI() < 20 then color.black else if RSI() > 78 then color.black else color.current);
#-------------------Code Ends--------------------------------------

Loading 1 comment...