home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / t / tas501.zip / MISSING.TAS < prev    next >
Text File  |  1993-02-25  |  613b  |  16 lines

  1. #TITLE Script to locate historical data that is not updated           
  2. { missing.tas - Script to check the quote data base for missing dates
  3.     as of the current date. It is necessary that the first ticker in the 
  4.     directory have the latest date downloaded. 
  5.     This ticker's last date is then checked against the last date of all 
  6.     the subsequent tickers. If a mis-match is found, a message is put
  7.     out.
  8. }
  9. #max_quotes 5
  10. #output_file 'missing.qts' n
  11. if first_ticker then 
  12.     file_date := date;
  13. if file_date <> date then  
  14.     writeln('S ',ticker,' last record is ',date, 
  15.     ' and should be ', file_date);
  16.