| nikoschopen 2,824 posts
 msg #62130
 - Ignore nikoschopen
 | 5/4/2008 8:45:14 PM 
 *Spring on Current Bar
 V > V1 AND (H - L) / V < (H1 - L1) / V1
 
 
 
 *Spring on Previous Bar
 V1 > V2 AND (H1 - L1) / V1 < (H2 - L2) / V2
 
 
 
 *Stocks 15 - 25%…Long
 AVGC20 >= (H * 1.15) and AVGC20 <= (H * 1.25)
 
 
 
 *Stocks > 25%…Long
 AVGC20 > (H * 1.25)
 
 This is identical to the previous filter. Try to write ure own based on what's written above.
 
 *Stocks 15 - 25%…Short
 AVGC20 * 1.18 <= L AND AVGC20 * 1.33 >= L
 
 
 
 *Stocks >25%…Short
 AVGC20 * 1.33 < L
 
 This is identical to the previous filter. Try to write ure own based on what's written above.
 
 *Long Reversal Bar
 H < H1 AND L < L1 AND C > ((H + L) / 2)
 
 
 
 *Short Reversal Bar
 H > H1 AND L > L1 AND ((H + L) / 2) > C
 
 This is identical to the previous filter. Try to write ure own based on what's written above.
 
 
 |