home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / Chip_1999-09_cd.bin / sharewar / markanal / _SETUP.1 / METAAUSTRALIANINDICES.QCF < prev    next >
Text File  |  1998-10-20  |  15KB  |  283 lines

  1. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  2. // The Market Analyzer for Windows
  3. // (C) Copyright 1994, 1995, 1996, 1997, 1998
  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. // note:  characters following // will be interpreted as comments.
  9.  
  10. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  11.  
  12. // QuoteList Configuration File
  13.  
  14. // for Creating MetaStock-Compatible Historical Quote Files
  15.  
  16. // for Salomon Smith Barney Australia Securities Pty Limited
  17.  
  18. // Located at: http://www.ssmb.com.au/cgi-public/price_info_public.pl
  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.  
  41. // The timezone indicator sets the timezone for the source of quotes for this page
  42.  
  43. // MAWIN will compare your timezone (see Global Setup button) with the page timezone
  44. // and adjust the default date and timestamps to the date and time at the page location
  45.  
  46. Timezone=K
  47. // see: http://aa.usno.navy.mil/AA/faq/docs/world_tzones.html
  48.  
  49. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  50.  
  51. // This optional entry allows quote companies to be added to the quotelist which are found
  52. // in the page.  It would normally be applicable to a download by_page.
  53. // The default is Off.
  54.  
  55. Add_Quote_Requests_to_QuoteList_from_Page=On
  56.  
  57. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  58. // Optional change in default header for Quotelist
  59.  
  60. QtlHeader=SYMBOL   FILE   SECURITY NAME  ALARM   H_ALM  L_ALM  DATE  HI/ASK  LO/BID  CLOSE  CHANGE  VOLUME  TIME  COMMENTS
  61.  
  62. //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  63. // Cut and paste this section into the same area of other QCF files to create MetaStock-compatible output files
  64. //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  65.  
  66. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  67. // This is the I/O formatting section
  68. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  69.  
  70. // The keywords which may be used are:
  71.  
  72. // Numeric Keyword Identifiers:
  73. // future: Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date, PE_Ratio, Dividend, and Earnings.
  74. // now: Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date.
  75.  
  76. // Textual Keyword Identifiers:
  77. // Symbol, Co_name, Time
  78.  
  79. // Note that just specifying output will not obtain it....it must be available from the chosen page, and must be
  80. // specified further below.
  81.  
  82. // Output format:
  83.  
  84. // If none is specified, the format will be:
  85.  
  86. // Date   Hi   Low   Close   Volume   Time
  87.  
  88. // Specify output with comma delimeter, then spaces as indicated
  89.  
  90. OutputFormat=Symbol   1  "D, "  Date   1   Hi   1  Low   1  Close   4   Volume
  91. //OutputFormat=Symbol   1  "D, "  Date   1   Open   1  Hi   1  Low   1  Close   4   Volume
  92. //OutputFormat=Date   Hi   Low   Close   Volume   Time
  93.  
  94. OutputDateFormat=yymmdd
  95.  
  96. // fields will be delimeted by fill spaces to the following positions by default:
  97. // field positions by field number: 0, 11, 24, 37, 50, 62, 74, 86, 98, 110, 122
  98.  
  99. OutputFieldPositions= 0, 11, 24, 37, 50, 62, 74, 86, 98, 110, 122
  100.  
  101. // A header section normally preceeds the data in a historical quote file,
  102. // and the header may now be customized or eliminated.
  103.  
  104. // If no header specifier statement is provided, the default header will be 
  105. // obtained from file Header.day
  106.  
  107. //Header=Header.day
  108. Header=MSheader.day
  109. // Header=none
  110.  
  111. // the default output delimeter will be spaces
  112. //OutputDelimeter=spaces
  113. // alternatively, comma delimeted output may be used, with no spaces
  114. OutputDelimeter=comma
  115.  
  116. // Input format: (for imports)
  117.  
  118. // future InputFormat=Date   Open   Hi   Low   Close   Volume   Time  
  119.  
  120. // there is no need for an input delimeter specification
  121. // mawin will use either >1 space, or comma delimeted.
  122.  
  123.  
  124. //ExportFormat=Date   Hi   Low   Close   Volume   Time
  125.  
  126.  
  127. // this option converts fractions in quotes, if present, to a decimal value with 3 places to the
  128. // right of the decimal point (and produces all output files accordingly)
  129.  
  130. NoFractions
  131.  
  132. // the default allows fractions
  133.  
  134. //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  135. // END marked section
  136. //!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  137.  
  138. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  139.  
  140. // This server must be accessed before the following server/pages can be successfully accessed!
  141.  
  142. Primer=http://www.ssmb.com.au
  143.  
  144. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  145. // This is the Site URL (for the quote page) including any prefix characters up to the qutoes to be added,
  146. // which will come from the .qtl file automatically as it executes
  147.  
  148. http://www.ssmb.com.au/cgi-public/indices_public.pl
  149.  
  150. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  151. // This is the Site URL for the Browser Direct Link.
  152. // Note:  http:// is included
  153. // To distinguish this optional input, it must be preceeded by BrowserLink=
  154.  
  155. BrowserLink=http://www.ssmb.com.au/cgi-public/indices_public.pl
  156.  
  157. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  158. // This is the Site URL for the Symbol Search page.
  159. // You will need this to use the automatic Symbol Search option
  160. // which will come from the .qtl file automatically as it executes
  161. // Note:  http:// is included
  162. // To distinguish this optional input, it must be preceeded by SymSearch=
  163.  
  164. SymSearch=http://www.ssmb.com.au/cgi-public/symbol_lookup.pl
  165.  
  166. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  167. // the next entry must define the download method.
  168. // the entry will be either "by_page" or "by_quote"
  169. // "by_page" means the page inherently defines the quote information which will be received.
  170. // these are usually index pages which are predefined.
  171.  
  172. // "by_quote" means the quote requests will be appended from the .qtl file automatically
  173.  
  174. by_page
  175.  
  176. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  177. // Optionally, enter the number of quotes per page this URL supports
  178. // the default will be 10, which for now, will be the maximum allowable
  179.  
  180. //NumQuotesPerPage=1
  181.  
  182. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  183. // the next entry tells MAWIN what delimeter character to add between appended quote symbols
  184.  
  185. // for example:
  186. // www2.merrill-lynch.ml.com/htbin/indlink?tick=dis,hd,xrx,spq
  187. // could be a valid request for this page, and the delimeter ',' is used
  188. // other sites may use '+' or other characters as a delimeter
  189.  
  190. //+
  191.  
  192. // (to determine what delimeter is used, bring up the page using your Web Browser,
  193. // request your stock quotes, and observe the delimeter used...usually shown in the
  194. // top text field of your Browser, as a part of the URL.)
  195.  
  196. // if the method is "by_page", enter nothing here; MAWIN will skip this field
  197. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  198. // next, tell MAWIN what character string to look for as a trigger to begin looking for quotes.
  199. // if you decide to customize your own download site, you can pick this string by first bringing
  200. // up the site using a Web Browser, and use "file save" to save the .htm image of the page.
  201. // then, examine the .htm file using any good text editor, such as WordPad, or Notepad.
  202. // first look for a string which will be used as a trigger to begin looking for quotes.
  203. // for this page, there are two types of quotes.  The first trigger phrase is:
  204.  
  205. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  206. Live Australian Indices
  207. CorrelateBy=Symbol    // specify how to correlate quote to quotefile (default)
  208. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  209. // next, enter the trigger string which indicates the start of a quote
  210. // for this type, it is:
  211. <TD>
  212. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  213. // MAWIN will automatically find quote data fields as specified by format keywords herein:
  214. // The keywords which may be used are:
  215.  
  216. // Numeric Keyword Identifiers:
  217. // Hi, Low, Bid, Ask, Open, Close, Prev, Change, Volume, Date, PE_Ratio, Dividend, Earnings, and Temp
  218. // "Temp" will be available to be used to store/handle throwaway numerics between quote data
  219. // "Temp" may be used multiple times
  220.  
  221. // Textual Keyword Identifiers:
  222. // Symbol, Co_name, Time
  223.  
  224. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  225. // for this file/site, the parsing commands are:
  226.  
  227. 5                        // lines per quote
  228. ReplaceAll="/" with "-"
  229. //AutoDate          // will search for date field and remove before processing quote
  230. NoDate            // Do Not look for Date field (none or manual specify)
  231. Symbol    Close    Change    Temp    Time
  232.  
  233. // up to 20 identifier types per quote may be specified
  234. // modifiers may be needed, to make adjustments of scale, such as this case where volume is
  235. // quoted in 1000's of shares, and must be adjusted to shares.
  236. // supported modifiers are '*' and '/'
  237.  
  238. //Volume * 1000
  239.  
  240. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  241. Live Currencies
  242. CorrelateBy=Symbol    // specify how to correlate quote to quotefile (default)
  243. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  244. // next, enter the trigger string which indicates the start of a quote
  245. // for this type, it is:
  246. <TD>
  247. //TriggerStringStart=Anywhere
  248. //TriggerStringStart=Beginning        // default
  249.  
  250.  
  251. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  252. // for this file/site, the parsing commands are:
  253.  
  254. 4                        // lines per quote
  255. //AutoDate              // will search for date field and remove before processing quote
  256. NoDate                // Do Not look for Date field (none or manual specify)
  257. NoCloseRequired    // Accept Quote w/o Close
  258. Symbol     Bid    Ask    Time
  259.  
  260. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  261. Live Overseas Indices
  262. CorrelateBy=Symbol    // specify how to correlate quote to quotefile (default)
  263. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  264. // next, enter the trigger string which indicates the start of a quote
  265. // for this type, it is:
  266. <TD>
  267. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  268. // for this file/site, the parsing commands are:
  269.  
  270. 6                        // lines per quote
  271. //AutoDate          // will search for date field and remove before processing quote
  272. NoDate            // Do Not look for Date field (none or manual specify)
  273. Symbol    Close    Change    Temp    Time
  274.  
  275. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  276. // If you have pulled up this file by external brousing, note that it is also accessable
  277. // under the options menu from the MAWIN market analysis environment.
  278.  
  279. // lines which begin with // are ignored, and may be eliminated or reordered as you wish.
  280.  
  281. //---------------------------------------------------------------------------------------------------------------------------------------------------------
  282.  
  283.