| roncarn 21 posts
 msg #58737
 - Ignore roncarn
 | 1/4/2008 2:11:48 PM 
 Fetcher [
 /* Shows Current location of a stock in respect to it's 104 week high and low */
 
 set{LOW104, low 104 week low}
 set{HIGH104, high 104 week high}
 set{SPREAD104, HIGH104 - LOW104}
 set{CLOSE104, close - LOW104}
 set{LOCATION104, CLOSE104 / SPREAD104}
 set{POSITION, LOCATION104 * 100}
 
 add column POSITION
 add column Long Term Debt {Debt}
 add column Profit Margin {ProfMarg}
 add column Dividend {Div}
 add column Dividend Yield {DivYld}
 
 and sort column 5 descending
 
 /* Add your criteria here */
 
 and Average Volume(5) is above 50000
 and close is above 3.00
 /*and PE is below 11
 and PE is above 1 */
 
 /* and sector Energy
 and industry semiconductors
 and stock type is etf */
 
 /* and POSITION is below 20
 and POSITION is above POSITION 1 week ago
 and close is at a 1 week high */
 ]
 
 
 |