PureBytes Links
Trading Reference Links
|
Hello,
No it is not supported in native AFL, however possible using for example
Osaka plugin: http://www.amibroker.net/3rdparty.php
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "bromba" <bromba@xxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Sunday, November 23, 2003 11:01 AM
Subject: [amibroker] array in array -- is it suppported in AFL?
> helo everybody,
>
> is it possible for an array to be an element of another array, so that
> the following code would work?
>
> function fArrayInArray() {
> local arrA, arrB, arrC;
> for(i=0;i<BarCount;i++) arrA[i] = Close[i];
> for(i=0;i<BarCount;i++) arrB[i] = High[i];
> arrC[0] = arrA;
> arrC[1] = arrB;
> return arrC;
> }
>
> arrD = fArrayInArray();
>
> best regards,
> BM
>
>
>
> 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/
>
>
>
------------------------ 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/mOAaAA/3exGAA/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/
|