PureBytes Links
Trading Reference Links
|
Andreas,
No, not all of them but it would be nice to see how well this indicator
works with a few. One thing that I noticed was that when the middle line was
near zero the cross of the oscillator into that zone seemed to give some
nice hits. Changing values values from 1.3185 certainly has some merit as
well. This is an indicator that begs for alignment.
J.
>From: "Andreas Grau" <agrau@xxxxxxxxxxxxxxxxxxxx>
>Reply-To: metastock@xxxxxxxxxxxxx
>To: <metastock@xxxxxxxxxxxxx>
>Subject: AW: AW: AW: Formula Help, Please
>Date: Tue, 7 Nov 2000 17:27:35 +0100
>
>J.,
>
>you don't really want to follow all my loosing trades, do you?
>
>From my findings on DynaZone(Will%R) on high-tech stocks:
>If you use shorter timeframes with DynaZones and Williams %R,
>try replacing the 1.3185 from the lower zone with something like
>1.6448. This will give you fewer signals with a higher percentage
>towards stronger moves up. Also, the entry efficiency is improved.
>Again, this is apparently only true for short BUY timeframes (< 30),
>and I have just tested this on a handful of high volatile Nasdaq stocks.
>
>Andreas
>
> > -----Ursprüngliche Nachricht-----
> > Von: owner-metastock@xxxxxxxxxxxxx
> > [mailto:owner-metastock@xxxxxxxxxxxxx]Im Auftrag von j seed
> > Gesendet am: Dienstag, 7. November 2000 09:08
> > An: metastock@xxxxxxxxxxxxx
> > Betreff: Re: AW: AW: Formula Help, Please
> >
> > Andreas,
> > Now that you've got it working, you'll have to share your results with
>us.
> > Congratulations! Glad I could be of some assistance. As far as
>timeframes, I
> > actually use several different timeframes to help give me an idea of
>what is
> > happening in a market.
> >
> > J.
> >
> >
> > >From: "Andreas Grau" <agrau@xxxxxxxxxxxxxxxxxxxx>
> > >Reply-To: metastock@xxxxxxxxxxxxx
> > >To: <metastock@xxxxxxxxxxxxx>
> > >Subject: AW: AW: Formula Help, Please
> > >Date: Tue, 7 Nov 2000 07:35:09 +0100
> > >
> > >J.,
> > >
> > >thanks for your suggestions. From my other mail so will see, that I
>finally
> > >succeded.
> > >
> > >Re your implementation: I see from your default values to the BUY and
>SELL
> > >periods that you have tried for a faster cross-over system. I tried
>this as
> > >well, but was disappointed by the results. So I returned to the
>author's
> > >original intention to return to a larger timeframe, at which point the
> > >resulting zones resemble William's original -20 and -80 lines unless
>and
> > >until volatility changes a lot. To summarize, I find the longer periods
> > >much
> > >more reliable.
> > >
> > >Oh btw: Do you know how large the confidence limit is for 1.3185 ? From
>a
> > >table I found in Vince's "Money Management Formulas", this is something
> > >between 80% and 85%
> > >
> > >
> > >Thx again,
> > >
> > >All the best,
> > >
> > >Andreas
> > >
> > > > -----Ursprüngliche Nachricht-----
> > > > Von: owner-metastock@xxxxxxxxxxxxx
> > > > [mailto:owner-metastock@xxxxxxxxxxxxx]Im Auftrag von j seed
> > > > Gesendet am: Dienstag, 7. November 2000 03:30
> > > > An: metastock@xxxxxxxxxxxxx
> > > > Betreff: Re: AW: Formula Help, Please
> > > >
> > > > 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.
> > > >
> > >
> >
> >
>_________________________________________________________________________
> > 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.
> >
>
_________________________________________________________________________
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.
|