home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / other / am / readme < prev   
Text File  |  1993-07-30  |  3KB  |  62 lines

  1. DESCRIPTION
  2.  
  3. The program AM is a 'realistic' amortization schedule generator.  It handles
  4. all the typical cases for a loan payment calculation program of this type:
  5.  
  6.     Takes loan amount and interest rate.
  7.  
  8.     Will compute payment amount (given length of loan) or use supplied
  9.     value.
  10.  
  11.     Will print all or part of the resulting schedule (do you really need
  12.     all 30 years printed?).
  13.  
  14.     Prints yearly sub-totals and final totals for everything.
  15.  
  16. The 'realistic' part is what makes AM unique.  These are the features that
  17. allow this program to do 'real' amortization schedules (ie, one where
  18. everything isn't just perfect):
  19.  
  20.     It prints all numbers right-justified with commas just as a
  21.     professionally (done in COBOL?) created schedule would.  This makes the
  22.     resulting schedules look very nice, and be easy to read.
  23.  
  24.     It allows the first month to be defined as short or long (more or less
  25.     days than normal) for the cases where the loan doesn't close on the
  26.     first of the month, but payments will be due on the first.
  27.  
  28.     It allows extra, short, or missed payments to be defined for any month.
  29.     This is necessary when running schedules on existing loans that have
  30.     not been well behaved (see the file ./example for a complex example).
  31.  
  32.     It handles an ARM (Adjustable Rate Mortgage) where the interest rate
  33.     changes over the life of the loan.
  34.  
  35. REQUIREMENTS
  36.  
  37. This program should compile and run on any unix-like system with a C compiler.
  38. It can use nroff(1) to format the output, and since nroff is used to format
  39. man pages most all unix-like systems should have this.
  40.  
  41. COPYRIGHT
  42.  
  43. Copyright 1987, 1992, 1993    Brett K. Carver
  44.                 brett@sr.hp.com
  45.  
  46. LICENSE
  47.  
  48. The program AM is licensed for personal use only.  It may not be sold.  Any
  49. schedules generated by it may not be sold.  I have not made any money on AM so
  50. it is not licensed to be used in any commercial way.  The sources may be
  51. distributed as long as all credits and copyrights remain in place.
  52.  
  53. DISCLAIMER
  54.  
  55. This software is presented as is, with no warranties expressed or implied,
  56. including implied warranties of merchantability and fitness.  In no event shall
  57. the authors, their institutions, or any subsequent distributors be liable for
  58. any special, direct, indirect or consequential damages whatsoever resulting
  59. from loss of use, data or profits, whether in an action of contract, negligence
  60. or other tortious action, arising out of or in connection with the use or
  61. performance of this software.
  62.