rjmoats1 8 posts msg #73515 - Ignore rjmoats1 | 
4/15/2009 1:19:01 AM
  I'm doing a little study on nr7s and I did find the code on the fourm, but I wasnt able to change the filter to scan for double nr7 days.
 
 could someone post a filter for double nr7 days? haha...im not much of coder :(
 
  | 
chetron 2,817 posts msg #73517 - Ignore chetron | 
4/15/2009 6:35:30 AM
  are you saying you want a nr8 or a nr14????????
 
  | 
alf44 2,025 posts msg #73529 - Ignore alf44 | 
4/15/2009 12:44:06 PM
  rj...not sure this is what you're looking for but...
 
 ----------------------------------------------------------
 
  	    
 
 ------------------------------------------------------------
 
 This will find stocks that have had back to back (consecutive) NR7s !
 
 
 Regards,
 
 alf44
 
 
  | 
rjmoats1 8 posts msg #73531 - Ignore rjmoats1 | 
4/15/2009 4:57:26 PM
  hey alf!
 
 thanks!! thats what I was looking for! :)
 
  | 
alf44 2,025 posts msg #73532 - Ignore alf44 | 
4/15/2009 5:01:21 PM
  ...glad to help...GLTY !
 
 
 
  | 
johnpaulca 12,036 posts msg #73534 - Ignore johnpaulca | 
4/15/2009 7:19:27 PM
  Alfie posted a spectacular filter a few years ago that included nr4,nr7, shark etc.
 
  | 
rjmoats1 8 posts msg #73739 - Ignore rjmoats1 | 
4/21/2009 5:26:27 PM
  yea I saw that one two, currently playing with it.
 
 so if I wanted to do 3 triple Nr7s..I tried:
 
 * Back to Back to back NR7s */
 
 /* NR7s (nr.7) (Narrowist Range of the last 7 days) */
 /* NR7backtobacktoback (nr.7b2b2b) (3 consecutive NR7s) */
 
 
 set{NR7twodaysago, count(Day Point Range 2 day ago reached a new 7 day Low, 1)}
 set{NR7yesterday, count(Day Point Range 1 day ago reached a new 7 day Low, 1)}
 set{NR7today, count(Day Point Range reached a new 7 day Low, 1)}
 
 set{NR7backtobacktoback, NR7twodaysago + NR7yesterday + NR7today}
 
 Show all stocks where NR7backtobacktoback equals 3
 
 
 add column NR7twodaysago {nr.7two}
 add column NR7yesterday {nr.7yest}
 add column NR7today {nr.7today}
 add column NR7backtobacktoback {nr.7b2b2b} 
 
 
 bleh~so thats my noob attempt to modify your code haha...I think the error is at NR7twodaysago <---not sure if "twodaysago" is valid.
 
  | 
chetron 2,817 posts msg #73740 - Ignore chetron | 
4/21/2009 6:30:08 PM
  cant do + + in one set line
 you need to break it up into 2 set lines
 
 
 
 
 
 
 
 
  | 
rjmoats1 8 posts msg #73749 - Ignore rjmoats1 | 
4/21/2009 9:03:40 PM
  hmm how would I go about seperating it?
 
 
 set{NR7backtobacktoback, NR7twodaysago + NR7yesterday + NR7today} 
 
 
 set{NR7backtobacktoback, NR7twodaysago + NR7yesterday} 
 set{NR7yesterday + NR7today}
 
 ?
 
  | 
chetron 2,817 posts msg #73752 - Ignore chetron modified | 
4/21/2009 9:38:16 PM
  you need a new name
 
 
 keep the orginal and add the new line????????
 
  |