PureBytes Links
Trading Reference Links
|
If the length of name AFTER "Fidelity Select " was fixed you could try:
NameR = StrRight(Name(),xx); //truncate Symbol to right xx characters use in Title below
Title = NameR+StrFormat("- {{INTERVAL}} {{DATE}} , C=%g, H=%g, L=%g, V={{VALUES}}"+
NumToStr(Volume,1.0,separator=True), C, H, L);
Otherwise eliminate the first (Left) 15 cahracters in the name() (see StrMid() in string operations below)
Then use Ttile = "Fid.Sel."+StrMid(name(),16,10)... as above
STRMID
− extracts part of the string
String manipulation
(AFL 2.0)
SYNTAX StrMid( STRING, start, count)
RETURNS STRING
FUNCTION Extracts a substring of length count characters from STRING, starting at position start
(zero−based). The function returns a copy of the extracted substring.
Joseph Biran
____________________________________________
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of gmorlosky
Sent: Sunday, February 03, 2008 5:18 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Fullname is not long enough on chart - how to lengthen ?
The changed name will remain and not be overwritten.
--- In amibroker@xxxxxxxxxxxxxxx, "gmorlosky" <gmorlosky@xxx> wrote:
>
> I am trying to display on a chart the Fullname () of Fidelity Select
> Pharamacuetical and the system truncates to about 17 characters
> of "Fidelity Select P". If I edit under symbol information, will the
> next AmiQuote download or anything else overwrite or not display my
> edits fullname ?
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|