home *** CD-ROM | disk | FTP | other *** search
/ c't freeware shareware 1999 February / CT_SW9902.ISO / pc / software / finanzen / boerse / stock100.exe / setup.fil / sources / quickenfind.src < prev    next >
Text File  |  1999-05-12  |  3KB  |  144 lines

  1. [Symbol]=quickenfind
  2. [Country]=1
  3.  
  4. [Name.German]=U.S. Kurse in USD - Quicken.Com
  5. [Name.English]=U.S. Quotes via Quicken.Com
  6.  
  7. [InfoShort.German]=U.S. Kurse in USD.  Suche nach Ticker-Symbol.  Kursdaten von Standard and Poors Comstock.  Bietet gute Charts und Firmenprofile (engl.).
  8.  
  9. [InfoShort.English]=U.S. Quotes in USD.  Search based on Ticker Symbol.  Quotes provided by Standard and Poor's Comstock.  Offers concise charts and company profile.
  10.  
  11. [InfoLong]=...
  12.  
  13. [SearchFor]=Ticker Symbol
  14. [SearchTransform]=uppercase
  15.  
  16. [BasedOn]=http://www.quicken.com/investments/quotes
  17.  
  18. [Host]=www.quicken.com
  19. [Doc]=investments/quotes/?symbol=$(SYMBOL)&defview=FULL
  20.  
  21. [ParserScript]=...
  22. set "decimal", "/"
  23. set "thousand", ","
  24. set "currency", "USD"
  25.  
  26.  
  27. outputto "last"
  28. onerror "<$(SYMBOL) not found>"
  29. findline "($(SYMBOL))"
  30. onerror "<FAIL>"
  31.  
  32. outputto "urlchart"
  33. findline ">Chart<" 
  34. say "http://www.quicken.com/investments/quotes/"
  35. findinline "HREF=\"" 
  36. sayuntil "\""
  37.  
  38. outputto "urldaychart"
  39. findline ">Intraday Chart<" 
  40. say "http://www.quicken.com/investments/quotes/"
  41. findinline "HREF=\"" 
  42. sayuntil "\""
  43.  
  44. outputto "urlprofile"
  45. findline ">Profile<" 
  46. say "http://www.quicken.com/investments/quotes/"
  47. findinline "HREF=\"" 
  48. sayuntil "\""
  49.  
  50. outputto "last"
  51. findline ">Last Trade<" 
  52. moveline 1
  53. joinuntil "</TD>"
  54. notags
  55. sayuntil "~"
  56.  
  57. outputto "volume"
  58. findline ">Volume<"
  59. moveline 1
  60. findinline "nbsp;", 2
  61. sayuntil "<"
  62.  
  63. outputto "change"
  64. findline ">Change<" 
  65. findline "nbsp;("
  66. findinline "("
  67. saynextnumber
  68.  
  69. outputto "bid"
  70. findline ">Bid<"
  71. moveline 1
  72. joinuntil "</TD>"
  73. notags
  74. ifnot "N/A"
  75.     sayuntil "~"
  76. endif
  77.  
  78. outputto "ask"
  79. findline ">Ask<"
  80. moveline 1
  81. joinuntil "</TD>"
  82. notags
  83. ifnot "N/A"
  84.     sayuntil "~"
  85. endif
  86.  
  87. outputto "open"
  88. findline ">Open<"
  89. moveline 1
  90. joinuntil "</TD>"
  91. notags
  92. sayuntil "~"
  93.  
  94. outputto "yesterday"
  95. findline ">Prev Close<"
  96. moveline 1
  97. joinuntil "</TD>"
  98. notags
  99. sayuntil "~"
  100.  
  101. outputto "low"
  102. findline ">Day's Range<"
  103. moveline 1
  104. joinuntil "</TD>"
  105. notags
  106. sayuntil "-"
  107.  
  108. outputto "high"
  109. findinline "-"
  110. sayuntil "~"
  111.  
  112. outputto "low52weeks"
  113. findline ">52-wk Range<"
  114. moveline 2
  115. saynextnumber
  116.  
  117. outputto "high52weeks"
  118. skipchars " -"
  119. saynextnumber
  120.  
  121. outputto "market"
  122. findline ">Market<"
  123. moveline 2
  124. saynextword
  125.  
  126.  
  127. outputto "date"
  128. findline "Retrieved "
  129. findinline ", "
  130. saynchars 3
  131. findinline " " 
  132. sayuntil " "
  133. say " "
  134. movechar 1
  135. sayuntil " "
  136. say "|ZD, Y"
  137.  
  138. outputto "time"
  139. movechar 1
  140. sayuntil " "
  141. movechar 1
  142. sayuntil " "
  143. say "|h:mx"
  144.