PureBytes Links
Trading Reference Links
|
Thanks d :-)
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
dingo
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Sunday, May 11, 2003 2:17 AM
Subject: RE: [amibroker] Re: Announcing
ABtool v0.9.3.6
I'll
translate Fred's techie lingo:
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>Radial = Radio Button..
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>d
<FONT
face=Tahoma size=2>-----Original Message-----From: Bob Jagow
[mailto:bjagow@xxxxxxxxxxx] Sent: Saturday, May 10, 2003 7:53
PMTo: <A
href="">amibroker@xxxxxxxxxxxxxxxSubject:
RE: [amibroker] Re: Announcing ABtool v0.9.3.6Which
radials, Fred?Maybe just rotate 'em?-----Original
Message-----From: Fred [mailto:fctonetti@xxxxxxxxx]Sent: Saturday,
May 10, 2003 4:44 PMTo: amibroker@xxxxxxxxxxxxxxxSubject:
[amibroker] Re: Announcing ABtool v0.9.3.6Uenal,With
regards to EXEcuting external programs, it would be extremelyhelpful to
be able to from within AFL run an EXPLORE followed by anAA followed by a
? and at each juncture be able to change ANY and ALLthe settings not
just the ones that are currently allowable in AFLi.e. the radials
etc.Any chance for a modification to accomplish this
?Fred--- In amibroker@xxxxxxxxxxxxxxx, "Fred"
<fctonetti@xxxx> wrote:> Uenal,>> Thanks for the
new features.>> This is an EXTREMELY beneficial tool and will
be even more so with> the new features.>> Thanks again,
Fred>> --- In amibroker@xxxxxxxxxxxxxxx, uenal.mutlu@xxxx
wrote:> > The latest version of the ABtool plugin for AB can be
found atthe> following locations:> > - File area
of the "amibroker" group at yahoo:>
> <A
href="">http://groups.yahoo.com/group/amibroker/files/ABtool/>
>> > - In the support area / 3rd party downloads at
www.amibroker.com:> > <A
href="">http://www.amibroker.net/3rdparty.php>
>> > - Or, email me:>
> uenal.mutlu@xxxx> >>
> HIGHLIGHTS OF THIS VERSION (see also History and ToDoList at
the> end of the reference file):>
> - Multi-Dimensional arrays>
> - Log file for user's own use>
> - Starting other programs from within
AFL> > - Getting/Setting environment
variables> > - Getting Date and Time
of today> > - Getting Day of Week
(DOW)> > - Getting current
directory> > - Exporting optionally
only the top N rows of a table> >> > Below is an example
for the use of multidimensional arrays.> > Please note, that from
now on all ABtool plugin functions have to> be prefixed> >
with an "xx". For details see the reference text file in the>
distribution archiv.> >> > UM> >> >
//------------------------------------------------------------------>
------------> > // ArrayXXX.afl> > // Multidimensional
Arrays in ABtool plugin v0.9.3.6+> > // Written 030510Sa by Uenal
Mutlu> >> > xxABtoolInit();>
> Filter = True;> >
AddTextColumn(xxDirCurGet(), "curDir");> >>
> // a 4D array with 4x6x15x30 elements of type 12
(int16; seeDoc)> > hArr = xxArrayCreate(12,
0, 4, 6, 15, 30);> > if (hArr >=
0)> > {>
> for (i1 = 0; i1 < 4;
i1++)> > for (i2 = 0; i2
< 6; i2++)> >
for (i3 = 0; i3 < 15; i3++)>
> for (i4 = 0; i4 < 30;
i4++)> >
{>
> valA
= 100 + i1 + i2 + i3 + i4; // testvalue> >>
> //
set element content>
>
xxArrayNumValSet(valA, hArr, i1, i2, i3, i4);> >>
> //
get element content>
> valB
= xxArrayValGet(hArr, i1, i2, i3, i4);> >>
>
//...> >
}> >> >
//...> >> >
xxMsgBox("Array filled", "Success");>
>
xxArrayDelete(hArr); // release the handle and
thememory> it had used> >
}> > else>
> xxMsgBox("Array could not be created.
Check Dim> params!", "Error!", 16);> >
//------------------------------------------------------------------>
------------
Yahoo! Groups Sponsor
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 the Yahoo! Terms of Service.
|