PureBytes Links
Trading Reference Links
|
Thanks Dusant.
I have created the following formula which I believe is correct. Your
comments are welcome:
{For full stochastics using three periods}
Period1 := Input("Time Period1", 1, 100, 12);
Period2 := Input("Time Period2", 1, 100, 3);
Period3 := Input("Time Period3", 1, 100, 3);
a:=HHV(H ,Period1)-LLV(L,Period1);
b:=C-LLV(L,Period1);
Kfast:=b/a;
Kfull:=Mov(Kfast,Period2,S);
Dfull:=Mov(Kfull,Period3,S);
Kfull*100;Dfull*100
Regards
Rahul
--- In equismetastock@xxxxxxxxxxxxxxx, "Dusant" <dusant@xxxx> wrote:
> There are two ways of plotting Slow Stoch.
> Either you take the moving averages of the high low close, and
substitute it in the stochastic formula, or apply the stochastic
formula to the slowing periods.
> Dusant
> Chief Architect
> http://www.candlestrength.com/
>
> ----- Original Message -----
> From: "Rahul" <me@xxxx>
> To: <equismetastock@xxxxxxxxxxxxxxx>
> Sent: Friday, April 02, 2004 14:47 PM
> Subject: Re: [EquisMetaStock Group] Stochastics
>
>
> > Hi,
> > I tried searching archives. But couldnt find anything.
> > Any help would be welcome.
> > Again, I need to know how to build slow stochastics function.
> > Regards
> > Rahul
> >
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/BefplB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|