----- Original Message -----
Sent: Sunday, January 08, 2006 6:55
PM
Subject: Re: [amibroker] plotting with no
title
Steve,
I do not think there is a Chart option as in
SetChartOptions()...maybe with some code...
Title_Or_noTitle=Param("title",1,1,2,1);
mytitle="my plot";
Plot
(
C,mytitle,
colorBlack,
styleCandle);
Title=WriteIf(Title_Or_noTitle==1,Title="",Title=mytitle);
Anthony
----- Original Message -----
Sent: Sunday, January 08, 2006 4:28
PM
Subject: [amibroker] plotting with no
title
Hi - When plotting something in a new
pane without defining Title, AB will insert the ticker symbol before
the plot name. Is there a way to tell AB not to do this? Thanks
very much!
Steve