[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(Simple?) Trendline Question



PureBytes Links

Trading Reference Links

This should be simple I thought..  I made an indicator in 2ki to plot a Zero
value trendline on various subgraphs so I didn't have to waste one of my 4
indicator plots on a 0 line anymore.  So the code was:

if lastbaronchart then begin
    value1 = tl_new(date,time-barinterval,0,date,time,0);
    TL_SetExtLeft(value1,True);
    TL_SetExtRight(value1,True);
    commentary(value1,newline);
end;

I placed test in 2 different subplots and on the lastbaronchart, the
expertcommentary reads test = 0, test = 1 on different lines, verifying that
there were 2 trendlines actually drawn.  Also verifying they were drawn was
that Drawing - Delete Drawing Objects allows me to now delete trendlines.

The problem is I don't see the trendlines!  I've tried different scaling
options and I changed the width to a wide value and still didn't see them.
What am I doing wrong?

Regards,
Chris