[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] Thanks, UM, for an even better ABTool



PureBytes Links

Trading Reference Links




It is 
fantastic that you are adding these features to ABTool.   I am using 
just about every one of them.
<FONT face=Arial color=#0000ff 
size=2> 
<FONT face=Arial color=#0000ff 
size=2>Thanks!
<BLOCKQUOTE 
>
  <FONT face="Times New Roman" 
  size=2>-----Original Message-----From: uenal.mutlu@xxxxxxxxxxx 
  [mailto:uenal.mutlu@xxxxxxxxxxx]Sent: Saturday, May 10, 2003 2:41 
  PMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker] 
  Announcing ABtool v0.9.3.6The latest version of the 
  ABtool plugin for AB can be found at the 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@xxxxxxxxxxxHIGHLIGHTS 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 tableBelow 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; see Doc)   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 the memory it 
  had used     }   
  else     xxMsgBox("Array could not be created. Check 
  Dim params!", "Error!", 
  16);//------------------------------------------------------------------------------Send 
  BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
  suggest@xxxxxxxxxxxxx-----------------------------------------Post 
  AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
  href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
  group FAQ at: <A 
  href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
  Your use of Yahoo! Groups is subject to the <A 
  href="">Yahoo! Terms of Service. 







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.