PureBytes Links
Trading Reference Links
|
thanks to all for the info on the indicators...worked like a charm.
--J
----- Original Message -----
From: "Gary Fritz" <fritz@xxxxxxxx>
To: <omega-list@xxxxxxxxxx>
Sent: Thursday, January 31, 2002 3:57 PM
Subject: Re: indicator
> > highest high of the previous x periods.
> > Plot1(highest(high,10));
> > but this isn't giving me what I want.
>
> Highest(High,X) returns the highest High out of the current bar and
> the X-1 bars before that.
>
> If you want the highest high of the X bars BEFORE the current bar,
> not including the current bar, use "Highest(High,X)[1]".
>
> > I need to see the line showing what that point was x periods ago.
> >
>
> Not sure what "that point" means. If you mean the High of X periods
> ago, use
> plot1(High[X]);
>
> If you want the "highest high in previous 10 bars" value from X bars
> ago, that would be
>
> plot1(Highest(High,10)[X]);
>
> Gary
>
|