PureBytes Links
Trading Reference Links
|
Don, are you into easylanguage? It is quite simple to create something like
this. My code usually has an extra twist to it so I don't send that out.
The basic code would be something like this. I am not much of a coder so it
might be missing a customary line or two.
{Put the index or stock or day session of futures in data1. Put upvolume in
data2 and downvolume in data3}
Input: Price1(C of data2),Price2(C of data3), Len1(#your
choice),Len2(#),Len3(#);
Vars: CV(0),Avg1(0),Avg2(0),Avg3(0);
CV = Cum(Price1 - Price2);
Avg1 = Average(CV,Len1);
Avg2 = Average(CV,Len2);
Avg3 = Average(CV,Len3);
Plot1(CV,"CV");
Plot2(Avg1,"Avg1");
Plot3(Avg2,"Avg2");
Plot3(Avg3,"Avg3");
----- Original Message -----
From: "Don Roos" <rosewood@xxxxxxxxxxxx>
To: <realtraders@xxxxxxxxxxxxxxx>
Sent: Tuesday, May 29, 2001 12:10 PM
Subject: Re: [RT] MKT - NYA CV
> Bob:
>
> Is there any indicator out there that is not proprietary for tracking the
> CNV with 3 or 4 mas as you have?
>
> BTW, Bob, your charts look like a work of art. Very nice.
>
> Don
>
> ----- Original Message -----
> From: "BobR" <bobrabcd@xxxxxxxxxxxxx>
> To: <realtraders@xxxxxxxxxxxxxxx>
> Sent: Tuesday, May 29, 2001 1:43 PM
> Subject: [RT] MKT - NYA CV
>
>
> In comparison the NYA cumulative net volume peaked 240 dow points recently
> and both have been in down trends since. As Ben says, it just isn't
prudent
> to fade the cv. At some point it will start to cross the moving averages
to
> the upside, but so far its still downsville.
>
> bobr
> http://www.oextrader.com/sigma_trader
>
> To unsubscribe from this group, send an email to:
> realtraders-unsubscribe@xxxxxxxxxxxxxxx
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
>
> To unsubscribe from this group, send an email to:
> realtraders-unsubscribe@xxxxxxxxxxxxxxx
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|