| arby347 87 posts
 msg #77218
 - Ignore arby347
 | 8/3/2009 11:50:36 PM 
 I am trying to screen for stocks when the angle of the LRI(12) starts to have a 45 degree incline (maybe 30 degrees would also work). Initially I thought that "slope of LRI12) >1 " is what I needed, however results were dependent on stock price ranges.
 
 My thinking is that if I have a change of  1 on the LRI(12) from one day to the next then I should get the 45 degree slope  I am  looking for when it evolves from being at a lower incline.
 
 I've tried to the following and it is not giving the desired results:
 
 set{var1, LRI(12)}
 set{var2, LRI(12) one day ago}
 set{var3,var1-var2}
 set{var4,LRI(12) two days ago}
 set{var5,var2- var4}
 
 var 5 < .99
 var 3 > .99
 
 Thanks in advance for any help!
 
 
 
 
 
 
 
 
 
 |