home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / finance / tas515dm.zip / TAS514.EXE / lha / ADDENDUM.TXT < prev    next >
Text File  |  1993-04-08  |  5KB  |  87 lines

  1. This file contains changes since the manual was printed.
  2.  
  3. Version 5.01 - March 10,1993
  4. -       Added new pre-defined array, "EQUITY", which contains the 
  5.         equity for each date in a profit test. See EQUITY.TAS script.
  6.         The EQUITY array is available at, and during a Profit Test.
  7.         EQUITY = CASH {+ or -} NUMBER OF SHARES * CURRENT_SHARE PRICE
  8.         using plus for Long positions, and minus for Short positions
  9. Version 5.02 - March 11, 1993
  10. -    Added Min(a,b) function to find minumum of two values a and b    
  11. -    Added Max(a,b) function to find maximum of two values a and b    
  12. -    Added MinVal(a) function to find minimum of array a
  13. -    Added MaxVal(a) function to find maximum of array a
  14. -       Price Graph now contains VOLUME histogram in the lower 10% 
  15.         of the graph.
  16. -       Added ability to print graph by keyboard command while viewing
  17.         the graph. Type the "P" character when a graph is displayed and
  18.         the graph will be printed according to the settings in your
  19.         Printer Setup screen.
  20. Version 5.04 - March 20, 1993
  21. -       Made internal function call stack dynamic to allow larger
  22.         calling parameter lists (e.g., AGET function for hundreds of 
  23.         fields).
  24. -       Added default directories for #OUTPUT_FILE and AOpen files
  25. -       Added TICKER_LIST pre-defined variable which contains the 
  26.         name of the current ticker list.
  27. -       Added MAXPAIR(a1,a2) function to return the pair-by-pair
  28.         maximum of each data point in array a1 and a2
  29. -       Added MINPAIR(a1,a2) function to return the pair-by-pair
  30.         minimum of each data point in array a1 and a2
  31. -       Added x= SIGN(a) function to return the "sign" of each element
  32.         in array "a" according to the following definition:
  33.                 If a[i] greater than zero, x[i] = +1
  34.                 if a[i] less than zero,    x[i] = -1
  35.                 if a[i] is zero,           x[i] = 0
  36. -       Modified PrintGraph function so that it honors the Page Size
  37.         setting used in the SETUP/PRINTER OPTIONS menu setting. This 
  38.         will provide up to four graphs per printed page. High resolution
  39.         printing is recommended for the Quarter Page setting.
  40. -       Fixed problem with Yes/No responses for international users.
  41. -       Added #COMPRESS command. Specify W,M,Y, or n for Weekly, Monthly
  42.         Yearly, or by "n" bars.
  43. -       Added COMPRESS option for Selection and Profit Test options
  44. -       Added Minumum Quotes setting to Profit Test
  45. -       Added Fixed commission amount to Profit Test
  46. -       Added ability to sort ticker list from ticker selection screen.
  47. -       Removed "Do you want to quit" interrogation from the main menu.
  48. Version 5.06, April 4, 1993
  49. -       Added LINECOLORS function to set the colors of lines drawn
  50.         on a graph. The color variable names are:
  51.         _BLACK               _BLUE                _GREEN       
  52.         _CYAN                _RED                 _MAGENTA     
  53.         _BROWN               _LIGHTGRAY           _DARKGRAY    
  54.         _LIGHTBLUE           _LIGHTGREEN          _LIGHTCYAN   
  55.         _LIGHTRED            _LIGHTMAGENTA         _YELLOW      
  56.         _WHITE       
  57.         Each array drawn by the Graph command will take the color
  58.         given by the LINECOLORS i-th argument. See the BBAND.TAS
  59.         script example for the use of the colors to set both the
  60.         top and bottom Bollinger Bands to light red.
  61.         LINECOLORS with no arguments will reset the colors to the
  62.         default settings.                
  63. -       Added BGcolor(color) function to set the background color
  64.         of a graph
  65. -       Added TextColor(color) function to set the text color (legends
  66.         annotations, dates) of a graph
  67. Version 5.10, April 8, 1993
  68. -       Added ASeek(h,s) function that looks for a record starting with 
  69.         the initial string value "s" in the file opened with handle "h". 
  70.         If the string "s" is found, the function returns 1, otherwise 
  71.         it returns 0. 
  72.         As an example of use, suppose you have a file that contains
  73.         the ticker symbol and the P/E in a file called PE.DAT.
  74.         Then, if you do 
  75.         Prolog handle = AOpen('PE.DAT','r');
  76.         if ASeek(handle,TICKER) = 1 Then
  77.         Begin
  78.                 t : String; 
  79.                 pe: Number;
  80.                 AGet(handle,t,pe);
  81.                 Writeln(t,pe);
  82.         End;
  83.         You will get a listing of ticker symbols and P/E's for those
  84.         found in the file.
  85.         Be sure to AClose the file in your Epilog. See the sample
  86.         script AIO.TAS and AIO.DTA for a complete example.
  87.