PureBytes Links
Trading Reference Links
|
Not that I've coded this, but it reads;
For application to indices from monthly data;
Take the "%change" of this months close to the close 14 months ago (positive
when index is higher).
Take the "%change" of this months close to the close 11 months ago (positive
when index is higher).
Add the 2 "%changes".
Make a 10 month WEIGHTED MA of the total of the two "%changes".
This is evidently the original, from Edwin Coppock.
Guess there'll be plenty of time to get this in order to go long.
Regards
Jon
----- Original Message -----
From: <rghstocks@xxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Wednesday, 24 July, 2002 2:32 AM
Subject: re:coppock curve
> This may not be what you are looking for but was in my indicator list for
Tradestation. Don't know where I picked it up.
> Randy
>
> Plot1(XAverage((Average(Close,22) /
Average(Close[250],22)-1),150),"Coppock");
> Plot2(0,"Zero");
> IF CheckAlert Then Begin
> IF Plot1 Crosses Above Plot2 or Plot1 Crosses Below Plot2
> Then Alert;
> End;
>
|