PureBytes Links
Trading Reference Links
|
Thanks for posting this nifty indicator.
j seed wrote:
> Andreas,
> Your negative dynamic zone uses a 70 day simple moving average (col A) while
> your col B uses a WillR(19). Try changing your col B to a
> mov(WillR(19),70,s) and see if you don't get some hits. Also I have written
> a Dynamic Zone Williams % R indicator that you may find useful. I have
> converted the Will%R to a +/- 50 oscillator. The formula is:
> {DYNAMIC W%R}
> 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;
> 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
>
> This will plot 3 dynamic zones and a Dynamic Williams%R. To use in an
> exploration you would need to use the Fml Var call function of the
> indicator.
>
> J.
>
> >From: "Andreas Grau" <agrau@xxxxxxxxxxxxxxxxxxxx>
> >Reply-To: metastock@xxxxxxxxxxxxx
> >To: <metastock@xxxxxxxxxxxxx>
> >Subject: AW: Formula Help, Please
> >Date: Mon, 6 Nov 2000 22:04:41 +0100
> >
> >Frans,
> >
> >Thanks for this pointer. The page contains what Ton Maas (I believe)
> >contributed and posted when Dynamic Zones were presented in TASC.
> >
> >The main (only ?) difference between what I did and Ton's implementation
> >is that I use Williams' %R and Ton used RSI - this shouldn't explain
> >why my Explorer setup doesn't work. Sigh !
> >
> >Cheers,
> >
> >Andreas
> >
> >
> >
> > > -----Ursprüngliche Nachricht-----
> > > Von: owner-metastock@xxxxxxxxxxxxx
> > > [mailto:owner-metastock@xxxxxxxxxxxxx]Im Auftrag von Frans Derksen
> > > Gesendet am: Montag, 6. November 2000 11:51
> > > An: metastock@xxxxxxxxxxxxx
> > > Betreff: Re: Formula Help, Please
> > >
> > >
> > > Hello Andreas,
> > >
> > > This might be of help: http://www.nt-tech.com.au/guppy/gup98.htm
> > >
> > > Dynamic Zones are located at Pg. 9
> > >
> > > Rgds.
> > > Frans
> > >
> > > At 09:34 6-11-00 +0100, you wrote:
> > > >
> > > >The e-mail below obviously didn't get thru. Maybe because of the
> > > attachments!?
> > > >I'll send them as private e-mail to everybody who's interessted. Also
> >please
> > > >e-mail me privately for your requests, so to avoid cluttering of the
> >list.
> > > >
> > > >My original problem is still the following:
> > > >
> > > >-----Original message-----
> > > >
> > > >List,
> > > >
> > > >I have been playing around with DynamicZones (see Zamansky&Stendahl's
> > > Dynamic Zones
> > > >from the TASC July1997 article). For those interested, I attached some
> > > archived
> > > >postings from this list.
> > > >
> > > >I tried to set up an explorer search that would give me the actual
> > > crossovers.
> > > >Here is what I did:
> > > >
> > > >ColA:
> > > > Mov(WillR(19),70,S)-(1.3185 * Stdev(WillR(19),70))
> > > >
> > > >ColB:
> > > > WillR(19)
> > > >
> > > >Filter:
> > > > Cross(ColB, ColA)
> > > >
> > > >I even tried this for a Filter:
> > > > Alert(Cross(ColB, ColA), 5)
> > > >
> > > >
> > > >No results, although I did find some by visual inspection.
> > > >
> > > >Can somebody please help? I am stuck.
> > > >
> > > >
> > > >Many thanks in advance,
> > > >
> > > >Andreas
> > > >
> > > >---
> > > >Andreas Grau aka agrau@xxxxxxxxxxxxxxxxxxxx
> > > >
> > > >I know you believe you understand what you think I said,
> > > >but I am not sure you realize that what you read is not
> > > >what I meant. -- Found in an English pub
> > > >
> > > >
> > >
> >
>
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
> Share information about yourself, create your own public profile at
> http://profiles.msn.com.
|