PureBytes Links
Trading Reference Links
|
Input: Length(120);
Plot1(Highest(h,Length)[1],"TopChan");
Plot2(Lowest(l,Length)[1],"BotChan");
This is standard TS channel breakout....
>I need to see the line showing what that point was x periods ago. So when
>there is a new high (of the last x periods) the line moves up then stays
>steady until there is another x period high.<
>>stays steady
It's only going to "stay steady" for "x" bars. Increase "x" if you want
it to stay there until there's a new high "x".
BTW, Gary's comments (as usual) are correct.
BW
>From: jason almeida <buystop@xxxxxxxxxxx>
>To: O-List <omega-list@xxxxxxxxxx>
>Subject: indicator
>Date: Thu, 31 Jan 2002 15:20:13 -0600
>
>Hello all,
>
>does any one know how to write a plot that plots a line at the highest high
>of the previous x periods.
>I wrote
>
>Plot1(highest(high,10));
>
>but this isn't giving me what I want.
>
>I need to see the line showing what that point was x periods ago. So when
>there is a new high (of the last x periods) the line moves up then stays
>steady until there is another x period high.
>This is driving me crazy. Please help.
>
>thanks,
>
>--Jason
>
|