| PureBytes Links Trading Reference Links | 
At 12:43 PM -0800 2/24/98, John Sweeney  S&C wrote:
>I want to say
>
>Plot1(iff(RngUp,highest(close,shorttrm),don't plot anything),"Range");
>
>but don't find a "don't plot anything" function in the Easy Lanuage manual.
>
>Is there such a thing?
>
>John
>
It looks as if you want:
if RngUp then
   Plot1(highest(close,shorttrm), "Range");
Bob Fulks
 |