| /* WARM FILTER FOR MP RSIWLR PROPHET.NET DISPLAY */ I think I have finally tweaked the WARM FILTER to give you the best candidates for Mike Parker's RSIWLR PROPHET.NET DISPLAY.
I added Muddy's bottom tail and a weekly bottom tail column.
I include the trend indicator to show the 10/60/200 day trend.
I use low momentum to select the stocks and sort on accumulation/distribution so the best ones should pop to the top.
Of course, if you just load these into Mike's QT setup, and wait for green the hot ones for that day pop to the top.
MAY ALL YOUR FILLS BE COMPLETE.
/* WARM FILTER FOR MP RSIWLR PROPHET.NET DISPLAY */
/* NORMALIZE accumulation distribution */
set{admin, min(accumulation distribution 60 day low, accumulation distribution)}
set{admax, max(accumulation distribution 60 day high, accumulation distribution)}
set{adrng, admax - admin}
set{adpct, adrng * .01}
set{adcon, accumulation distribution - admin}
set{adval, adcon / adpct }
/* NORMALIZE momentum(12) */
set{morng, momentum(12) 60 day high - momentum(12) 60 day low}
set{mopct, morng * .01}
set{mocon, momentum(12) - momentum(12) 60 day low}
set{moval, mocon / mopct }
/* NORMALIZE rsi(2) */
set{rsrng, rsi(2) 60 day high - rsi(2) 60 day low}
set{rspct, rsrng * .01}
set{rscon, rsi(2) - rsi(2) 60 day low}
set{rsval, rscon / rspct }
/* NORMALIZE williams %r(10) */
set{wrrng, williams %r(10) 60 day high - williams %r(10) 60 day low}
set{wrpct, wrrng * .01}
set{wrcon, williams %r(10) - williams %r(10) 60 day low}
set{wrval, wrcon / wrpct }
/* CALCULATE 10/60/200 day trend */
set{T10, count(10 day slope of the close above 0,1)}
set{T60, count(60 day slope of the close above 0,1)}
set{T200, count(200 day slope of the close above 0,1)}
Set{u1, T200 * 1}
Set{u2, T60 * 10}
Set{u3, T10 * 100}
Set{uu, u1 + u2}
Set{TREND, uu + u3}
/* CALCULATE DAILY AND WEEKLY BOTTOM TAIL SIZE */
set{BTSize, close - low}
set{WBTSize, weekly close - weekly low}
add column wrval
add column adval
add column rsval
add column moval
add column trend
add column wbtsize
add column btsize
/* SELECT STOCKS WITH MOMENTUM(12) NEAR 60 DAY BOTTOM AND LOW BELOW L/R LINE */
moval below 1
LOW is BELOW the bottom linear regression line(60)
/* PRICE/VOLUME SELECTION CRITERIA */
price between 1 and 20
volume above 100000
sort column 6 ascending |