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