PureBytes Links
Trading Reference Links
|
Lionel,
1.The ZeroLag Ema is an indicator that can be found at the Guppy site.
2.An indicator plots on a price...ie; a 3day simple moving average
3.An oscillator plots above and below a known value or trigger line...ie;
the Williams %R above and below -50 while the CCI oscillates above and below
0.
4.In order to get 2 different colors you will need to plot 2 oscillators...a
positive oscillator with the up color(green) and a negative oscillator with
the down color(red). To make a positive and negative oscillator, open the
Indicator Builder and Edit the desired oscillator. Now go to the last
statements of the formula. Usually you will see a statement that states if
pos. plot 1, else plot -1. For a positive oscillator change the last
statement to else plot 0. Change the name of the oscillator to read
"whatever positive" and save the new oscillator. The negative oscillator is
a little different in that you will need to change the positive statement to
read 0 and allow the negative side of the original oscillator to remain the
same. So in the statement above you would need for it to read if pos. plot
0. Remember to change the name to "whatever negative". Now you will have 3
oscillators...the original, the positive oscillator, and the negative
oscillator. Not all oscillators will be this easy but I think you get the
idea. Hope this helps.
J.
>From: "Lionel Issen" <lissen@xxxxxxxxx>
>Reply-To: metastock@xxxxxxxxxxxxx
>To: <metastock@xxxxxxxxxxxxx>
>Subject: Re: (Market) Jul Corn
>Date: Fri, 28 Apr 2000 09:26:35 -0500
>
>What is the Zero Lag ema?
>Is this a copywrite indicator (it is not shown at the Equis site)?
>How do you define an oscillator as opposed to an indicator and how do you
>make it a different color if it is above or below some horizontal line?
>
>Lionel Issen
>lissen@xxxxxxxxx
>----- Original Message -----
>From: j seed <jseed_10@xxxxxxxxxxx>
>To: <metastock@xxxxxxxxxxxxx>
>Sent: Friday, April 28, 2000 8:26 AM
>Subject: Re: (Market) Jul Corn
>
>
> > Adam,
> > While Metastock does not allow for a true nothing plot, it does allow
>for
>a
> > default plot. If the Gann HiLo were an oscillator we could simply
>default
>to
> > a zero line and have a positive plot in one color and a negative plot in
> > another. Since the Gann HiLo is an indicator we must choose another
> > indicator for a default. The possibilities are endless but I choose the
> > ZeroLag Ema as my default in the indicators that are shown below. Plot
>each
> > on a price chart with a separate color for each. You must also plot the
> > ZeroLag Ema on the chart in a third color. I named these indicators
>"visual"
> > because they serve as visuals only and would not work in an exploration
>or
> > system test.
> >
> > BTW: I like your your expert adviser approach and believe that Daryl
>could
> > use either approach to fulfill his visual fantasies!
> >
> > J.
> >
> > {name: GANN-HiVisual}
> > HLd:=If(CLOSE>Ref(Mov(H,3,S),-1),
> > {then}1,
> > {else}If(CLOSE<Ref(Mov(L,3,S),-1),
> > {then}-1,
> > {else}0));
> > HLv:=ValueWhen(1,HLd<>0,HLd);
> > HiVisual:=If(HLv=-1,
> > {then}Mov(H,3,S),
> > {else}{place default here}Fml("Zero Lag Ema")) ;
> > HiVisual;
> >
> > {name: GANN-LoVisual}
> > HLd:=If(CLOSE>Ref(Mov(H,3,S),-1),
> > {then}1,
> > {else}If(CLOSE<Ref(Mov(L,3,S),-1),
> > {then}-1,
> > {else}0));
> > HLv:=ValueWhen(1,HLd<>0,HLd);
> > LoVisual:=If(HLv=-1,
> > {then}{place default here}Fml( "Zero Lag Ema" ) ,
> > {else} Mov(L,3,S ));
> > LoVisual;
> >
> >
> > >From: "Adam Hefner" <vonhef@xxxxxxxxxxxx>
> > >Reply-To: metastock@xxxxxxxxxxxxx
> > >To: <metastock@xxxxxxxxxxxxx>
> > >Subject: Re: (Market) Jul Corn
> > >Date: Thu, 27 Apr 2000 22:18:40 -0500
> > >
> > >I am not sure I follow how you can do this?
> > >How can you have MetaStock do a "no plot"
> > >as you have put it?
> > >
> > > Adam
> > >
> > >----- Original Message -----
> > >From: "j seed" <jseed_10@xxxxxxxxxxx>
> > >To: <metastock@xxxxxxxxxxxxx>
> > >Sent: Thursday, April 27, 2000 9:42 PM
> > >Subject: RE: (Market) Jul Corn
> > >
> > >
> > > > Daryl,
> > > > Good idea! Best way that I can think of is to split the formula into
>a
> > > > positive and negative formula then plot each separately with no plot
>if
> > >pos.
> > > > is in neg. territory or neg. is in pos. territory. You would delete
>the
> > >last
> > > > formula line and use either of the last two lines.
> > > >
> > > > J.
> >
> > ________________________________________________________________________
> > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
> >
>
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
|