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