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

  1. [Symbol]=yahdefind
  2. [Country]=49
  3.  
  4. [Name.German]=Deutsche Kurse - Yahoo.De
  5. [Name.English]=German Quotes via Yahoo.De
  6.  
  7. [InfoShort.German]=Frankfurt-Kurse in EUR.  Suche nach WKN.  Kursdaten von Standard and Poors Comstock.
  8.  
  9. [InfoShort.English]=German Frankfurt-Quotes in EUR.  Search based on German WKN.  Quotes provided by Standard and Poor's Comstock.
  10.  
  11. [InfoLong]=...
  12.  
  13. [SearchFor]=WKN
  14.  
  15. [BasedOn]=http://finanzen.yahoo.de
  16.  
  17. [Host]=finanzen.yahoo.de
  18. [Doc]=quotes/de/quote?detailed=t&symbols=$(SYMBOL)*F
  19.  
  20. [ParserScript]=...
  21. set "decimal", ","
  22. set "thousand", "."
  23. set "currency", "EUR"
  24.  
  25.  
  26. outputto "last"
  27. onerror "<$(SYMBOL) not found>"
  28. findline "($(SYMBOL))"
  29. onerror "<FAIL>"
  30.  
  31.  
  32. outputto "market"
  33. gotoline 1
  34. findline "<h2>Börse"
  35. findinline " "
  36. saynextword
  37.  
  38. findline "Letzte Notierung"
  39. notags
  40. findinline "Notierung "
  41. skipchars "0123456789" 
  42. if ":"
  43.     findinline " ", -1
  44.     movechar 1
  45.     outputto "time"
  46.     sayuntil "&"
  47.     say "|h:m"
  48.     set "date", "<N/A>"
  49. else
  50.     findinline " ", -1
  51.     movechar 1
  52.     outputto "date"
  53.     sayuntil "&"
  54.     say "|D.M.Y"
  55.     set "time", "<N/A>"
  56. endif
  57.  
  58. outputto "last"
  59. findinline "183;" 
  60. saynextnumber 
  61.  
  62. outputto "change"
  63. findline ";nderung"
  64. findinline "("
  65. saynextnumber 
  66.  
  67. outputto "yesterday"
  68. findinline "kurs"
  69. saynextnumber 
  70.  
  71. outputto "volume"
  72. findinline "volumen"
  73. saynextnumber 
  74.  
  75. outputto "low"
  76. findinline "spanne"
  77. sayuntil "-"
  78.  
  79. outputto "high"
  80. movechar 1 
  81. saynextnumber 
  82.  
  83. outputto "bid"
  84. findinline "Geldkurs"
  85. ifnot "-"
  86.     saynextnumber 
  87. endif
  88.  
  89. outputto "ask"
  90. findinline "Briefkurs"
  91. ifnot "-"
  92.     saynextnumber 
  93. endif
  94.  
  95. outputto "open"
  96. findinline "ffnungskurs"
  97. ifnot "-"
  98.     saynextnumber 
  99. endif
  100.  
  101. moveline 1
  102. if "Weitere Infos"
  103.     outputto "urlprofile"
  104.     say "http://finanzen.yahoo.de"
  105.     findinline "href=\"" 
  106.     sayuntil "\""
  107. endif
  108.