PureBytes Links
Trading Reference Links
|
OK, thanks. The single chars are at least a start...
--- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <amibroker@xxxx> wrote:
> Hello,
>
> Variables in AFL can only have following types:
>
> number (float)
> array of numbers (floats)
> string
> OLE dispatch handle (returned by GetScriptObject and CreateObject functions)
>
>
> Arrays of STRINGs are not supported. You can however display single-character codes
>
> Filter = 1;
>
> dw = DayOfWeek();
>
> Code = IIf( dw == 1, 77,
>
> IIf( dw == 2, 84,
>
> IIf( dw == 3, 87,
>
> IIf( dw == 4, 116,
>
> IIf( dw == 5, 70,
>
> 0 ) ) ) ) );
>
>
> AddColumn(Code, "", formatChar );
>
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "thelunit" <thelunit@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Thursday, August 14, 2003 12:35 AM
> Subject: [amibroker] Array text in AA
>
>
> > Anyone tell me how I can display array text in the AA? For eg, when I'm exploring across all quotations with "filter = buy" how do
> I specify a text column called "Day of week" which shows the words "Monday", "Tuesday", "Wednesday" etc.
> >
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|