PureBytes Links
Trading Reference Links
|
You can use as many alternative plots in the same Plot# as you want as long
as they all have the same (identical) name. The example you cited below
won't work because you used different names, ie "three" and "five". Change
both names to "myplot" and both should plot just fine.
>From: Mike Gossland <mga@xxxxxxxx>
>To: Rivky <rivky@xxxxxxxxxxxx>, omega-list@xxxxxxxxxx
>Subject: Re: naming plot1 different names in different conditions
>Date: Tue, 19 Nov 2002 09:53:37 -0800
>
>At 08:49 AM 11/19/2002, Rivky wrote:
> >Is that possible?
> >
> >For example;
> >
> >input: y(0);
> >
> >if y=1 then begin
> >plot1 (xaverage(c,3),"three");
> >end;
> >
> >if y=2 then begin
> >plot1 (xaverage(c,5),"five");
> >end;
> >
> >When I try to verify, it tells me the plot has already been assigned a
>name. Is there any way I can get around this without having to use two
>plots?
>
>
>Sorry, no.
|