DrJimO 35 posts msg #125523 - Ignore DrJimO | 
10/10/2015 1:08:06 PM
  Can anyone tell me why line 2 of this doesn't work? I'm trying to count the number of days the volume is 20% more than the 50 day average volume  
 
 set { VolUp, Volume(50) * 1.2 }
 set { VolUpDays, Count(VolUp, 50)  }
 
  | 
four 5,087 posts msg #125524 - Ignore four modified | 
10/10/2015 1:46:09 PM
  set { VolUp,  average Volume(50) * 1.2 }
 set { VolUpDays, Count(volume >= volup,100)  } /* Counts the number of times the logic occurs during the most recent 100 days */
 
 draw volupdays
 add column volupdays
 
  | 
DrJimO 35 posts msg #125529 - Ignore DrJimO | 
10/10/2015 11:29:53 PM
  Thanks Four - that works. .......Jim
 
  | 
four 5,087 posts msg #125530 - Ignore four | 
10/11/2015 12:12:00 AM
  welcome
 
  | 
DrJimO 35 posts msg #125532 - Ignore DrJimO | 
10/11/2015 10:43:18 AM
  Different issue - do the SF folks know that -- add column separator -- no longer works? 
 
  |