InvestorsHub Logo
Replies to #47 on Red Robin (RRGB)

stocktrademan

04/14/21 1:55 PM

#48 RE: stocktrademan #47

#BARCHART RED 100% SELL
#04/14/21 1:11 PM
#Usage: Generation of initial short watchlist then scanned for sell triggers (ex: bearish candlesticks, indicator sell signals)
#also can be used to identify a set of stocks to investigate for oversold situations for covered puts option positions using standard RSI

#composite trendspotter
DetrendedPriceOsc("color norm length" = 34, length = 34) < 0
and
#short term indicators
close < simplemovingavg(length=20)
and
simplemovingavg(length=20) < simplemovingavg(length=50)
and
simplemovingavg(length=20) < simplemovingavg(length=100)
and
simplemovingavg(length=20) < simplemovingavg(length=200)
and
#medium term indicators
close < simplemovingavg(length=50)
and
simplemovingavg(length=50) < simplemovingavg(length=100)
and
simplemovingavg(length=50) < simplemovingavg(length=150)
and
simplemovingavg(length=50) < simplemovingavg(length=200)
and
#long term indicators
close < simplemovingavg(length=100)
and
close < simplemovingavg(length=150)
and
close < simplemovingavg(length=200)
and
simplemovingavg(length=100) < simplemovingavg(length=200)