PureBytes Links
Trading Reference Links
|
Thank you Fred. What is the dotted-line in the KST chart in pring's
page?
The following is the KST formula:
/*Daily, Short term KST*/
p1 = MA( ROC(Close,10), 10);
p2 = MA( ROC( Close, 15), 10 );
p3 = MA( ROC( Close, 20), 10 ) ;
p4 = MA( ROC( Close, 30), 15);
kst = p1 + 2 * p2 + 3 * p3 + 4 * p4;
Graph0 = kst;
/*Weekly, Intermediate term KST */
p1 = MA( ROC(Close,10), 10);
p2 = MA( ROC( Close, 13), 13 );
p3 = MA( ROC( Close, 15), 15 ) ;
p4 = MA( ROC( Close, 20), 20);
kst = p1 + 2 * p2 + 3 * p3 + 4 * p4;
Graph0 = kst;
/*Monthly, Long term KST*/
p1 = MA( ROC(Close,9), 6);
p2 = MA( ROC( Close, 12), 6 );
p3 = MA( ROC( Close, 18), 6 ) ;
p4 = MA( ROC( Close, 24), 9);
kst = p1 + 2 * p2 + 3 * p3 + 4 * p4;
Graph0 = kst;
Alan
--- In amibroker@xxxxxxxxxxxxxxx, "Fred" <fctonetti@xxxx> wrote:
> Alan,
>
> From his book ...
>
> ROC/MA/Weight(s) ...
>
> Short 10/10/1, 15/10/2, 20/10/3, 30/15/4
> Inter 10/10/1, 13/13/2, 15/15/3, 20/20/4 (Use Weekly Data)
> Long 9/ 6/1, 12/ 6/2, 18/ 6/3, 24/ 9/4 (Use Monthly Data)
>
> Any of these could be modified any way you like including using an
> EMA or DEMA instead of an MA etc. etc.
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Alan Nouray" <alann@xxxx> wrote:
> > The following is the link for Pring site for KST system. It has
> > short, intermediate and long term KST:
> >
> > http://www.pring.com/weeklykst.htm?edtSymbol=ndx&B1=Submit
> >
> > I looked at few stocks and the timing was very good for this
> system.
> > Does anybody know the formula for Pring's short, intermediate and
> > long KST. I have the formula for short term the was written by TJ
> but
> > not for others.
> >
> > Alan
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get a FREE REFINANCE QUOTE - click here!
http://us.click.yahoo.com/2CXtTB/ca0FAA/i5gGAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|