home *** CD-ROM | disk | FTP | other *** search
- { missing.tas - Script to check the quote data base for missing dates
- as of the current date. It is necessary that the first ticker in the
- directory have the latest date downloaded.
- This ticker's last date is then checked against the last date of all
- the subsequent tickers. If a mis-match is found, a message is put
- out.
- }
- #max_quotes 5
- #output_file 'missing.qts' n
- if first_ticker then
- file_date := date;
- if file_date <> date then
- writeln('S ',ticker,' last record is ',date,
- ' and should be ', file_date);
-