| stockfetcher101 6 posts
 msg #90145
 - Ignore stockfetcher101
 | 3/23/2010 7:40:53 AM 
 set{body_bottom,min(open,close)}
 set{body_top,max(open,close)}
 set{body_length,body_top - body_bottom}
 set{body_half,body_length * 0.5}
 set{price_half,body_half + body_bottom}
 
 show stocks where body_top above body_top 1 day ago
 and body_bottom below price_half 1 day ago
 and close below open
 and open 1 day ago below close 1 day ago
 and close 1 days ago increasing for the last 3 days
 and do not draw body_top
 and do not draw body_bottom
 and do not draw price_half
 and volume gained over 50%
 
 
 
 
 
 |