No auto wrap I know
of. You can define your own title which can include "\n" characters to cause
line feeds. Here's an example:
N(Title = "%K Trading
System {{DATE}} \n"
+
EncodeColor(colorYellow) + NumToStr(Yellow,1.3) +
WriteIf(yellow >=
red," >=
red"," <
red") +
"\n"
+
EncodeColor(colorRed) + NumToStr(red,1.3) +
WriteIf(red >=
green," >=
green"," <
green") +
"\n"
+
EncodeColor(colorGreen) + NumToStr(green,1.3) +
WriteIf(green >=
blue," >=
blue"," <
blue") +
"\n"
+
EncodeColor(colorBlue) + NumToStr(blue,1.3) +
WriteIf(Buy," all up
and Long",WriteIf(Short," all down
and Short","
mixed")) +
"\n"
+
EncodeColor(colorBlack) + Name() +
";
" + C
);
-----Original
Message-----
From:
amibroker@xxxxxxxxxxxxxxx
[mailto:amibroker@xxxxxxxxxxxxxxx]
On Behalf Of Steve
Sent: Wednesday, October 26, 2005
08:27
To: amibroker@xxxxxxxxxxxxxxx
Subject:
[amibroker] Anyway to
"wrap" the chart title displayed values??
Is there a way to force the chart
title to automatically wrap the values it displays? At the moment the Pivot
point values are only partly displayed.