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 / zdnetfind.src < prev    next >
Text File  |  1999-03-10  |  2KB  |  109 lines

  1. [Symbol]=zdnetfind
  2. [Country]=1
  3.  
  4. [Name.German]=U.S. Kurse - ZdNet.Com
  5. [Name.English]=U.S. Quotes via ZdNet.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.  
  8.  
  9. [InfoShort.English]=U.S. Quotes in USD.  Search based on Ticker Symbol.  Quotes provided by Standard and Poor's Comstock.  Offers charts and company profile.  
  10.  
  11. [InfoLong]=...
  12.  
  13. [SearchFor]=Ticker Symbol
  14. [SearchTransform]=uppercase
  15.  
  16. [BasedOn]=http://www.zdii.com
  17.  
  18. [Host]=www.zdii.com
  19. [Doc]=quote_full.asp?ticker=$(SYMBOL)
  20.  
  21. [ParserScript]=...
  22. set "decimal", "/"
  23. set "thousand", ","
  24. set "currency", "USD"
  25.  
  26. #define normalfield findline "<td"; joinuntil "</td>"; notags; sayuntil "~"
  27.  
  28. outputto "last"
  29. onerror "<$(SYMBOL) not found>"
  30. findline "($(SYMBOL))"
  31. onerror "<FAIL>"
  32.  
  33. outputto "date"
  34. notags
  35. findinline "Last Trade "
  36. sayuntil " "
  37. say "|M/D/Y"
  38.  
  39. outputto "time"
  40. movechar 1
  41. sayuntil " "
  42. say " "
  43. movechar 1
  44. sayuntil " "
  45. say "|h:m:s x"
  46.  
  47.  
  48. outputto "urlchart"
  49. findline "Chart" 
  50. findline "<a ", -1
  51. findinline "href=\""
  52. say "http://www.zdii.com/"
  53. sayuntil "\""
  54.  
  55. outputto "urlprofile"
  56. findline "Key Financials" 
  57. findline "<a ", -1
  58. findinline "href=\""
  59. say "http://www.zdii.com/"
  60. sayuntil "\""
  61.  
  62. outputto "market"
  63. findline "Market" 
  64. findline "<td"
  65. joinuntil "</td>"
  66. notags
  67. saynextword
  68.  
  69. outputto "last"
  70. findline "Last Trade" 
  71. $(normalfield)
  72.  
  73. outputto "change"
  74. findline "% Change" 
  75. $(normalfield)
  76.  
  77. outputto "yesterday"
  78. findline "Prev Close"
  79. $(normalfield)
  80.  
  81. outputto "volume"
  82. findline "Volume"
  83. $(normalfield)
  84.  
  85. outputto "open"
  86. findline "Open" 
  87. findline "<td"
  88. joinuntil "</td>"
  89. notags
  90. saynextnumber
  91.  
  92. outputto "high"
  93. findline "Day High"
  94. $(normalfield)
  95.  
  96. outputto "low"
  97. findline "Day Low"
  98. $(normalfield)
  99.  
  100. outputto "low52weeks"
  101. findline "52 Wk Low" 
  102. $(normalfield)
  103.  
  104. outputto "high52weeks"
  105. findline "52 Wk High" 
  106. $(normalfield)
  107.  
  108.  
  109.