home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / Chip_1999-09_cd.bin / sharewar / markanal / _SETUP.1 / WatchIndices.qcf < prev    next >
Text File  |  1997-05-08  |  7KB  |  135 lines

  1. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  2. // The Market Analyzer for Windows
  3. // (C) Copyright 1994, 1995, 1996, 1997
  4. //     by Jim Dowdle
  5. // Methods shown herein may be used for no other purpose than
  6. // creating and modifying configuration files for use with this product.
  7. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  8.  
  9. // QuoteList Configuration File
  10.  
  11. // for Quotes.com
  12.  
  13. // Located at: http://www.quote.com/
  14.  
  15. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  16.  
  17. // this file contains your Internet Site Path (URL) for the root .qtl file;
  18. // defines the download method;
  19. // and contains parsing instructions to be used by the MAWIN generic
  20. // parsing routines
  21.  
  22. // You may edit it as needed if you choose to change the Site used,
  23. // or if the Site format changes
  24.  
  25. // This method of specifying and decoding Web Pages has been chosen to make it
  26. // "easy" to adapt to new pages or changes in pre-defined pages.
  27. // Some users may not wish to get into this level of detail, and others may find
  28. // it easy to use this specifying/formatting scheme to add new pages to your
  29. // daily downloads, or just to keep up with changes.
  30.  
  31. // If you do not wish modify these files, pre-defined files and updates may become 
  32. // available in the near future.
  33.  
  34. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  35. // This is the Site URL (for the quote page) including any prefix characters up to the qutoes to be added,
  36. // which will come from the .qtl file automatically as it executes
  37. // Note:  eliminate http://
  38.  
  39. fast.quote.com/fq/quotecom/quote?symbols=
  40.  
  41. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  42. // This is the Site URL for the Symbol Search page.
  43. // You will need this to use the automatic Symbol Search option
  44. // which will come from the .qtl file automatically as it executes
  45. // Note:  http:// is included
  46. // To distinguish this optional input, it must be preceeded by SymSearch=
  47.  
  48. SymSearch=http://fast.quote.com/fq/quotecom/ticker?search=
  49.  
  50. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  51. // the next entry must define the download method.
  52. // the entry will be either "by_page" or "by_quote"
  53. // "by_page" means the page inherently defines the quote information which will be received.
  54. // these are usually index pages which are predefined.
  55.  
  56. // "by_quote" means the quote requests will be appended from the .qtl file automatically
  57.  
  58. by_quote
  59.  
  60. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  61. // the next entry tells MAWIN what delimeter character to add between appended quote symbols
  62.  
  63. // for example:
  64. // www2.merrill-lynch.ml.com/htbin/indlink?tick=dis,hd,xrx,spq
  65. // could be a valid request for this page, and the delimeter ',' is used
  66. // other sites may use '+' or other characters as a delimeter
  67.  
  68. +
  69.  
  70. // (to determine what delimeter is used, bring up the page using your Web Browser,
  71. // request your stock quotes, and observe the delimeter used...usually shown in the
  72. // top text field of your Browser, as a part of the URL.)
  73.  
  74. // if the method is "by_page", enter nothing here; MAWIN will skip this field
  75. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  76. // next, tell MAWIN what character string to look for as a trigger to begin looking for quotes.
  77. // if you decide to customize your own download site, you can pick this string by first bringing
  78. // up the site using a Web Browser, and use "file save" to save the .htm image of the page.
  79. // then, examine the .htm file using any good text editor, such as WordPad, or Notepad.
  80. // first look for a string which will be used as a trigger to begin looking for quotes.
  81. // for this page, there are two types of quotes.  The first trigger phrase is:
  82.  
  83. Stock Quotes
  84.  
  85. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  86. // next, enter the trigger string which indicates the start of a quote
  87. // for this type, it is:
  88.  
  89. <TD ALIGN=LEFT>
  90.  
  91. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  92. // MAWIN will automatically find quote data fields as specified by format keywords herein:
  93. // The keywords which may be used are:
  94.  
  95. // Numeric Keyword Identifiers:
  96. // Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date, PE_Ratio, Dividend, and Temp
  97. // "Temp" will be available to be used to store/handle throwaway numerics between quote data
  98. // "Temp" may be used multiple times
  99.  
  100. // Textual Keyword Identifiers:
  101. // Symbol, Co_name, Time
  102.  
  103. // for this file/site, the parsing commands are:
  104.  
  105. 9                        // lines per quote
  106. AutoDate          // will search for date field and remove before processing quote
  107. //NoDate            // Do Not look for Date field (none or manual specify)
  108. Symbol    Time    Open    Hi    Low    Close    Change    Volume
  109.  
  110. // up to 20 identifier types per quote may be specified
  111. // modifiers may be needed, to make adjustments of scale, such as this case where volume is
  112. // quoted in 1000's of shares, and must be adjusted to shares.
  113. // supported modifiers are '*' and '/'
  114.  
  115. //Volume * 1000
  116.  
  117. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  118. // for this page, there are two types of quotes.
  119. // The second trigger phrase and remaining commands are:
  120. // (currently, a maximum of 2 are allowed)
  121.  
  122. Mutual Fund Quotes        // begin looking for new quote pattern
  123. <TD ALIGN=LEFT>                // indicates start of quote
  124. 10                        // lines per quote
  125. AutoDate          // will search for date field and remove before processing quote
  126. Symbol    Time    Temp    Temp    Close    Change    Temp    Prev
  127.  
  128. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  129. // If you have pulled up this file by external brousing, note that it is also accessable
  130. // under the options menu from the MAWIN market analysis environment.
  131.  
  132. // lines which begin with // are ignored, and may be eliminated or reordered as you wish.
  133.  
  134. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  135.