jorjax3 13 posts msg #51757 - Ignore jorjax3 | 
5/23/2007 4:10:35 PM
  I am not sure how to write this and could use some help.
 
 yesterdays close was higher than the day before
 yesterdays volume was higher than the day before
 todays open was a gap up
 todays current volume is double yesterdays total volume
 current price is at least 90% of todays HOD
 price is between 1 and 50
 volume greater than 1000000
 
 
 looking forward to help, thanks.
 
  | 
lockwhiz 206 posts msg #51758 - Ignore lockwhiz modified | 
5/23/2007 7:00:11 PM
 
  	    
 
 
 I haven't tried this yet....may need some fixing...may not...but its a start.
 
  | 
nikoschopen 2,824 posts msg #51759 - Ignore nikoschopen | 
5/23/2007 7:41:14 PM
  Fetcher[
 /*yesterdays close was higher than the day before*/
 close 1 day ago above close 2 days ago 
 
 /*yesterdays volume was higher than the day before*/
 volume 1 day ago above volume 2 days ago 
 
 /*todays open was a gap up (by how much??) -- fill in the blank {ie. gap above 3, namely 3%}*/
 gap above ?? 
 
 /*todays current volume is double yesterdays total volume*/
 set{2xVol,2 * volume 1 day ago}
 count(volume above 2xVol,1) equals 1
 
 /*current price is at least 90% of todays HOD */
 set{HiLo, High - Low}
 set{ClLo, Close - Low}
 set{range, ClLo / HiLo}
 set{ratio, range * 100}
 ratio above 89
 
 price is between 1 and 50
 volume greater than 1000000
 ]
 
 The hyperlink thing doesn't seem to work (as of now) so you'll need to manually copy/paste the above filter into the fetcher window. Also, it appears that this particular filter is too restrictive. You might want to loosen it up to get more hits.
 
  | 
nikoschopen 2,824 posts msg #51761 - Ignore nikoschopen modified | 
5/23/2007 8:05:16 PM
  [Deleted by poster]
 
  | 
jorjax3 13 posts msg #51767 - Ignore jorjax3 | 
5/24/2007 6:37:18 AM
  ok I will, and thank you both.
 
  | 
lockwhiz 206 posts msg #51768 - Ignore lockwhiz modified | 
5/24/2007 9:47:21 AM
  niko ... just an FYI, as I have beat my head against the wall too many times when I have code that wasn't "clickable"...
 ...for some reason you can't imbed the "?" in a comment line .... go figure !
 
 IMHO
 
 lockwhiz
 
 
 
 
 
  |