PureBytes Links
Trading Reference Links
|
Edson,
You are looking for dynamic zones. This indicator uses the Williams %R
and was written by a close friend, J. Seed.:-) You will need to put
the name of your oscillator where the DWR variable is.
enjoy,
Preston
Dynamic Zone Williams %R Indicator
PR:=Input("Enter Periods for W%R",1,100,14);
PB:=Input("Enter Periods for BUY",1,100,20);
PS:=Input("Enter Periods for SELL",1,100,20);
{CONVERT W%R TO +/-50 OSC}
DWR:=(Mov(WillR(PR),2,S))+50;{place your oscillator here}
UpZone:=Mov(DWR,PS,S)+(1.3185 * Stdev(DWR,PS));
LwZone:=Mov(DWR,PB,S)-(1.3185 * Stdev(DWR,PB));
MidZone:=(UpZone + LwZone)/2;
MidZone;
UpZone;
LwZone;
DWR
--- In equismetastock@xxxxxxxxxxxxxxx, "Edson L F" <edsonlf@xxx> wrote:
>
> Hi Jose and Lionel Issen,
>
> My objective can be seen here :
>
> http://img216.imageshack.us/my.php?image=0002oscposenegmswg5.png
>
> My objective is the construction of the bands UP and Dn in MetaStock.
>
> thanks a lot for the aid!
>
> Edson
>
>
> [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/
<*> 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/
|