| THINGS JUST GOT BETTER! Since the data using indpostion is so much more accurate, we can now find stocks where the 4 WARM criteria are LOW!
fetcher[
/* WARM FILTER FOR MP RSIWLR PROPHET DISPLAY ACCUMULATION DISTRIBUTION LOW */
/* NORMALIZE accumulation distribution */
set{adval, INDPOSITION(accumulation distribution, 60) }
/* NORMALIZE momentum(12) */
set{moval, INDPOSITION(momentum(12), 60) }
/* NORMALIZE rsi(2) */
set{rsval, RSI(2) }
/* NORMALIZE williams %r(10) */
set{wrval, INDPOSITION(williams %r(10), 60) }
/* 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 WARM CRITERIA NEAR 60 DAY BOTTOM */
wrval below .20
adval below .01
rsval below 20
moval below .01
/* PRICE/VOLUME SELECTION CRITERIA */
price ABOVE .01
volume above 100000
sort column 6 ascending
]
NOTE: Since RSI is already between 0 and 100, no need to normalize it.
Just run this filter and pop these stocks in MP's QT setup.
They fit the MP RSIWLR ANALYZER like hand in glove!
MAY ALL YOUR FILLS BE COMPLETE. |