This is the bullish momentum indicator from CMLviz (Capital Market Laboratories) posted by Ophir Gottlieb.
It identifies
Here's the code for ThinkorSwim, you can use this as a scanner as well on the Daily chart.
Shared Scan Link: http://tos.mx/!bIJtEPZe Click here for --> Easiest way to load shared links
Note: This is NOT the same as the premium Buy the Dip indicator posted here.
It identifies
- downtrended stocks climbing above their 200sma (a critical juncture used by algos)
- is above short ma to confirm momentum
- but not overbought as determined with RSI
Here's the code for ThinkorSwim, you can use this as a scanner as well on the Daily chart.
Code:
# CML Buy the Dip Indicator rev 1 by theelderwand in uTS 8-7-19
def EMA10 = MovAvgExponential(CLOSE, 10, 0, no);
def SMA200 = SimpleMovingAvg(CLOSE, 200, 0, no);
def RSI20 = RSI(20, 70, 30, CLOSE, AverageType.WILDERS, no);
def RSI14 = RSI(14, 70, 30, CLOSE, AverageType.WILDERS, no);
plot Data = (CLOSE crosses above SMA200) and (CLOSE > EMA10) and RSI20 < 70 and RSI14< 70;
Data.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
Data.SetDefaultColor(Color.LIME);
Shared Scan Link: http://tos.mx/!bIJtEPZe Click here for --> Easiest way to load shared links
Note: This is NOT the same as the premium Buy the Dip indicator posted here.
Last edited by a moderator: