Quote:
|
Originally Posted by Uptrend Yes! thank you for your kindness.
Oh! MP. Cruz got it for me, thanks! |
Here you go! I have the EMAs and MAs commented out. The chart was getting crowded. Just copy below into SF.
/* MP RSIWLR ANALYZER DISPLAY */
/* NORMALIZE accumulation distribution */
set{adval, INDPOSITION(accumulation distribution, 60) * 100 }
/* NORMALIZE momentum(12) */
set{moval, INDPOSITION(momentum(12), 60) * 100}
/* NORMALIZE rsi(2) */
set{rsval, RSI(2) }
/* NORMALIZE williams %r(10) */
set{wrval, INDPOSITION(williams %r(10), 60) * 100 }
/* Modify the 50 to the period of interest. */
set{TSF50, LRI(50) + LRS(50)}
set{TSF5, LRI(5) + LRS(5)}
set{TSF9, LRI(9) + LRS(9)}
set{TSF15, LRI(15) + LRS(15)}
/* DISPLAY THE COLUMNS */
add column wrval
add column adval
add column rsval
add column moval
add column tsf5
add column tsf9
add column tsf15
add column tsf50
/* DRAW THE MP RSIWLR CHART */
and draw wrval
and draw adval on plot wrval
and draw moval on plot wrval
and draw rsval on plot wrval
/* and draw ema(5)
and draw ema(9)
and draw ema(13) */
and draw dma(28, 14)
and draw bollinger(10,1.5)
and draw linear regression channel(60, 1)
/* and draw simple moving average(20)
and draw simple moving average(50) */
and draw TSF50 on plot price
and draw TSF15 on plot price
and draw TSF9 on plot price
and draw TSF5 on plot price
close between 1 and 5
and Average Volume(90) above 300000
and market is not OTCBB
/* END MPs RSIWRL DISPLAY CODE */