| springhill 74 posts
 msg #64588
 - Ignore springhill
 | 7/1/2008 6:03:02 PM 
 Anyone---
 
 I am trying to do a filter that will meet the first three tests and then if met, draw that only as True or False  indicator on the chart. With True being at the top of the chart and False at the bottom
 
 I can get it to draw an indicator on the chart but it draws 1 and 2 and 3.
 
 Any help will be appreciated
 
 Frank
 
 set{Ta, count(close > open, 1)}
 set{Tb, count(close < close yesterday, 1)}
 set{Tc, count(low < low yesterday, 1)}
 set{Tr3, Ta + Tb}
 set{True, Tr3 + Tc}
 show stocks where
 volume > 800000
 and True >= 3
 and price > 30
 and add column True
 
 
 | 
| chetron 2,817 posts
 msg #64591
 - Ignore chetron
 | 7/1/2008 6:52:30 PM 
 clickable...
 
 
 
 
 
 
 | 
| rtucker 318 posts
 msg #64592
 - Ignore rtucker
 | 7/1/2008 7:32:36 PM 
 Not sure if you want an "and" situation for a reversal type day?
 
 
 
 
 
 
 
 | 
| springhill 74 posts
 msg #64603
 - Ignore springhill
 | 7/1/2008 11:08:01 PM 
 Thanks chetron and rtuckr
 
 Didn't think about multiplication. Your solution works great.
 
 Yes, it is used to look for reversals to go long
 
 Frank
 
 
 |