PureBytes Links
Trading Reference Links
|
Thanks Preston.
I had run the version that appeared in 7/2007 of TASC and found that the
results were quite similar to an MACD.
I?ll give your code a trial.
Warm regards
Lionel
From: equismetastock@xxxxxxxxxxxxxxx [mailto:equismetastock@xxxxxxxxxxxxxxx]
On Behalf Of pumrysh
Sent: Thursday, June 28, 2007 11:52 AM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: [EquisMetaStock Group] Re: Volume Price Confirmation Index
In 2005 I posted this original code from Active Trader's Mag
HYPERLINK
"http://finance.groups.yahoo.com/group/equismetastock/message/15932"http://f
inance.groups.yahoo.com/group/equismetastock/message/15932
At the time I didn't feel the code had any merit and even advised
using only part of it(VPR). The reason was that the code from the
magazine used the short lookback periods rather than the longer
periods to calculate the VPC. The correct code should be:
{VPCI}
{Vol Price Confirmation Index}
{Active Trader March 2005}
Pds:=input("periods",1,500,12);
Pdsa:=input("longterm vol periods",1,500,50);
VPC:=mov(c,pdsa,vol)-mov(c,pdsa,s);
VPR:= (mov(c,pds,vol)/mov(c,pds,s))*VPC;
VM:= mov(v,pds,s)/mov(v,pdsa,s);
VPCI:=(VPC*VPR)*VM;
VPCI
I realized this after reading Wabbit's code at
HYPERLINK
"http://forum.equis.com/forums/thread/24511.aspx"http://forum.equis.com/foru
ms/thread/24511.aspx
and a pdf from the Charles Dow Award site which Bill Trudeau found.
It's the 2007 award.
HYPERLINK
"https://www.mta.org/eweb/DynamicPage.aspx?webcode=CharlesDowAward"https://w
ww.mta.org/eweb/DynamicPage.aspx?webcode=CharlesDowAward
The pdf was a great find and helps to explain the idea that Buff
Dormeier had behind the indicator.
Enjoy,
Preston
--- In HYPERLINK
"mailto:equismetastock%40yahoogroups.com"equismetastock@xxxxxxxxxxxxxxx,
pumrysh <no_reply@xxx> wrote:
>
>
> Thought some of you might enjoy this. Its a volume based indicator
> discussed in the March '05 edition of Active Trader. By using just
> the VPR I think you will find a most useful indicator...change the
> last line to VPR.
>
> Enjoy,
>
> Preston
>
>
> {VPCI}
> {Vol Price Confirmation Index}
> {Active Trader March 2005}
> Pds:=input("periods",1,500,12);
> Pdsa:=input("longterm vol periods",1,500,50);
> VPC:=mov(c,pds,vol)-mov(c,pds,s);
> VPR:= (mov(c,pds,vol)/mov(c,pds,s))*VPC;
> VM:= mov(v,pds,s)/mov(v,pdsa,s);
> VPCI:=(VPC*VPR)*VM;
> VPCI
>
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.476 / Virus Database: 269.9.10/876 - Release Date: 6/28/2007
10:56 AM
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.476 / Virus Database: 269.9.10/876 - Release Date: 6/28/2007
10:56 AM
[Non-text portions of this message have been removed]
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|