PureBytes Links
Trading Reference Links
|
------------------------------------------------------------------------
You cannot reply to this message via email because you have chosen not
to disclose your email address to the group.
To reply: http://groups.yahoo.com/group/equismetastock/post?act=reply&messageNum=6200
------------------------------------------------------------------------
Juan,
Glad I could help!
P
--- In equismetastock@xxxxxxxxxxxxxxx, "emarco" <emarco@xxxx> wrote:
> Preston,
>
> yep...Good Idea
> I will do that ......that's the best way I think
>
> ..thanks....a lot
>
> Juan
> ----- Original Message -----
> From: pumrysh
> To: equismetastock@xxxxxxxxxxxxxxx
> Sent: Thursday, January 30, 2003 9:06 PM
> Subject: Re: [EquisMetaStock Group] Adjusting parameters with
volatility
>
>
> Juan,
> First problem that we are going to run into is putting the
volatility
> indicator into the stoch format.
> The metastock call for the stoch is:
> Stoch(%kPeriods , %kSlowing)
> This is the short form for the following formula:
> (sum(close - LLV(L,5),4) / sum(HHV(H,5) - LLV(L,5), 4)) * 100
> Where 5 is the %k periods and 4 is the %k slowing
> In order to develop a stoch of volatility we will need to input
its
> values into the formula.
> We can do this by using the following:
>
> Periods:=Input("periods",1,250,4);
> X:=Vol(Periods,Periods);
> (sum(X - LLV(X,5),4) / sum(HHV(X,5) - LLV(X,5), 4)) * 100
>
> Is this more like what you had in mind?
>
>
> Preston
>
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/
|