mktmole 325 posts msg #47092 - Ignore mktmole | 
9/21/2006 9:58:05 AM
  I must have an code error below as 0 returns, any help is appreciated.
 thanks
 
 
 set{C_today, count(close below day position(.10,1)} 
 set{C1day_ago, count(close 1 day ago below day position(.10,1)} 
 set{OR1, C_today + C1day_ago}
 and do not draw OR1
 show stocks where OR1 above 0
 and add column C1day_ago and add column C_today 
 
 
 
  | 
VousDeux 17 posts msg #47095 - Ignore VousDeux modified | 
9/21/2006 12:23:17 PM
  You are missing the second closing paranthesis on the first and second lines.
 
 
 
  | 
kliebert 17 posts msg #47098 - Ignore kliebert | 
9/21/2006 4:01:24 PM
  try this:
 
 
 set{C_today, count(close below day position(.10,1),1)}
 set{C1day_ago, count(close 1 day ago below day position(.10,1),1)}
 
 set{OR1, C_today + C1day_ago} 
 OR1 > 0 
 
 and do not draw OR1
 
 and add column C1day_ago and add column C_today
 add column or1
 
 
 
 
  | 
mktmole 325 posts msg #47104 - Ignore mktmole | 
9/21/2006 8:46:38 PM
  Thank you!
 
 
  |