AfricaFund 18 posts msg #41695 - Ignore AfricaFund | 
3/2/2006 9:46:55 PM
  I want to see stocks that meet the criteria below but yesterday. I've tried added " 1 day ago" as well as the formula below but to no avail, any ideas? thanks!
 
 
 set{T10, count(10 day slope of the close above 0,1)} 
 set{T60, count(60 day slope of the close above 0,1)} 
 set{T200, count(200 day slope of the close above 0,1)} 
 
 Set{u1, T200 * 1} 
 Set{u2, T60 * 10} 
 Set{u3, T10 * 100} 
 
 Set{uu, u1 + u2} 
 Set{TREND, uu + u3} 
 
 
 draw DMA(28,-14) 
 draw weekly DMA(28,-14) 
 
 days(trend is above 50,1) 
 days(weekly bollinger oscillator(20) is above 50,1) 
 days(DMA(28,-14) is above weekly DMA(28,-14),1) 
 days(stochrsi(2,2) equals 1,1) 
 days(rsi(2) is above 95,1) 
 days(weekly stochrsi(2,2)} equals 1,1) 
 
 
  | 
AfricaFund 18 posts msg #41696 - Ignore AfricaFund | 
3/2/2006 9:48:06 PM
  woops forgot the equals one at the end of each criteria (still doesn't work):
 
 
 set{T10, count(10 day slope of the close above 0,1)} 
 set{T60, count(60 day slope of the close above 0,1)} 
 set{T200, count(200 day slope of the close above 0,1)} 
 
 Set{u1, T200 * 1} 
 Set{u2, T60 * 10} 
 Set{u3, T10 * 100} 
 
 Set{uu, u1 + u2} 
 Set{TREND, uu + u3} 
 
 
 draw DMA(28,-14) 
 draw weekly DMA(28,-14) 
 
 days(trend is above 50,1) equals 1
 days(weekly bollinger oscillator(20) is above 50,1)  equals 1
 days(DMA(28,-14) is above weekly DMA(28,-14),1)  equals 1
 days(stochrsi(2,2) equals 1,1)  equals 1
 days(rsi(2) is above 95,1)  equals 1
 days(weekly stochrsi(2,2)} equals 1,1)  equals 1
 
 
  | 
nikoschopen 2,824 posts msg #41708 - Ignore nikoschopen | 
3/3/2006 2:46:24 AM
  It seems like you just need to add the "date offset" feature to ure filter. Hopefully that will bring the matter to rest.
 
  	    
 
 
  | 
AfricaFund 18 posts msg #41716 - Ignore AfricaFund | 
3/3/2006 1:28:51 PM
  thanks nikoschopen, appreciate the help!
 
 
  |