| mnkayaker76 7 posts
 msg #43355
 - Ignore mnkayaker76
 modified
 | 4/30/2006 5:11:25 AM 
 show stocks where linear regression(60) slope is above 0 AND draw linear regression(60) slope AND draw bottom linear regression line(60)
 
 draw linear regression(60)
 draw bollinger bands(20,2)
 show stocks where RSI(2)is below 1
 and close is between 2 and 20
 and average volume(90)is above 100000
 and volume is above 100000
 
 add column RSI(2)
 add column Bottom Linear Regression(60)sort column 5
 
 
 /* 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 }
 
 
 /* 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
 
 date offset is 1
 
 
 
 |