hrbmd2 14 posts msg #53946 - Ignore hrbmd2 | 
8/9/2007 8:16:58 PM
  karennma,
 
 Where did you get the 500000 volume and 5 days from?
 
 And isn't this supposed to be a moving trend?
 
  | 
hrbmd2 14 posts msg #53947 - Ignore hrbmd2 | 
8/9/2007 8:39:22 PM
  karennma,
 
 Where did you get the values (volume, days, etc.)?
 
 And isn't this supposed to be a moving trendline?
 
  | 
curmudgeon 103 posts msg #53950 - Ignore curmudgeon | 
8/9/2007 10:58:14 PM
  I took a stab at it...dunno how to do the logic in SF. I did good to get this far. May work on it some more....it's good practice.
 
 
 if 
 Close > Close[1 bar ago] then
 value = Volume * (Close - Close[1 bar ago])
 
 else if
 
 Close < Close[1 bar ago] then
 value = -Volume * (Close - Close[1 bar ago])
 
 else
 
 value = 0;
 
 Sum(value, 18);
 
  | 
dangreene 229 posts msg #53964 - Ignore dangreene | 
8/10/2007 12:33:45 PM
  Ah-ha, an old cobol programmer? (Maybe cobol II)
 
  | 
curmudgeon 103 posts msg #53969 - Ignore curmudgeon | 
8/10/2007 2:40:24 PM
  Nope. Newbie VB and have my nose stuck in TS EL all day.
 
  | 
nikoschopen 2,824 posts msg #53972 - Ignore nikoschopen modified | 
8/10/2007 5:11:13 PM
  First of all, how effective is this indicator? Second, who are worden's anyway? ;)
 
  	    Add in ure own price and volume criteria to narrow down the matches.
 
  | 
nikoschopen 2,824 posts msg #53974 - Ignore nikoschopen | 
8/10/2007 9:36:47 PM
  "Day change" uses the % figure rather than the $ figure. The following is a modified version of the above for those who prefer to use the $ over % in the calculation.
 
  	     
 
  | 
lpancuk 3 posts msg #53999 - Ignore lpancuk | 
8/12/2007 2:15:10 PM
  First of all, how effective is this indicator? Second, who are worden's anyway? ;) 
 
 They are the makers of TeleChart2007 and Blocks programs also provide data feed at very reasonable prices. Note that the applications are free to download with a paid subscription. Their support is one of the best. See www.worden.com
 
  |