| thenakedsingularity 12 posts
 msg #67133
 - Ignore thenakedsingularity
 | 9/10/2008 8:28:50 AM 
 
 hey guys,
 
 I am just a newbie. I see the following in many of the filters but do not understand what it actually does.
 Could someone help me understand?
 
 Thanks!
 
 /* TRO STAT DISPLAY - 10 PERCENT POPS PER WEEK */
 
 set{HiOp, high - open}
 set{Long_Profit, HiOp/open }
 
 set{B10A, count(Long_Profit > .10 , 100)}
 
 set{A10A, count(Long_Profit > .10 , 1)}
 set{chg, sum( A10A - A10A 1 day ago ,5)}
 
 and add column separator
 and add column B10A {GT10%}
 
 add column chg{(wk)}
 add column chg 1 week ago{(-1wk)}
 add column chg 2 weeks ago{(-2wk)}
 add column chg 3 weeks ago{(-3wk)}
 add column chg 4 weeks ago{(-4wk)}
 add column chg 5 weeks ago{(-5wk)}
 add column chg 6 weeks ago{(-6wk)}
 add column chg 7 weeks ago{(-7wk)}
 add column chg 8 weeks ago{(-8wk)}
 and add column separator
 add column industry
 add column sector
 and add column separator
 
 
 |