0

我搜了一下,看看有没有关于获取谷歌金融的基本数据的讨论,即季度(中期)和年度的3个报表(损益表、资产负债表和现金流量表)。共6组数据。但是,主要只是定价信息(如 OHLC 等)被涵盖,或者只是说 API 不涵盖。

我想要的是获取所有这些基础数据并将其放入 mySQL 以供我未来的流程使用。我希望这里的专家通过 HTMLAgilityPack、字符串操作(instr、mid 等)、LINQ 等就获得它的最佳方法提供建议。

我正在使用 VB.NET 和 mySQL,并将考虑使用 php 作为 Web 界面从 mySQL 获取信息。请给我一些具体的想法和例子。非常感谢。

下面是包含html的链接,下面是部分有用代码的摘录。

https://www.google.co.uk/finance?q=HKG%3A1300&fstype=ii&ei=jwD8U7m3H8O9lAWUtIDYDQ

<table id=fs-table class="gf-table rgt">
<thead><tr><th class="lm lft nwp"> In Thousands of CNY (except for per-share items) </th>
<th  class="rgt"> 6 months ending 2013-06-30 </th>
<th  class="rgt"> 6 months ending 2012-06-30 </th>
<th  class="rgt rm"> 6 months ending 2011-06-30 </th>
</tr></thead>
<tbody>
<!-- 1 row for one coaitem -->
<tr >
<td  class="lft lm bld">Turnover
</td>
<td  class="r bld">1,265,676.00</td>
<td  class="r bld">1,093,939.00</td>
<td  class="r bld rm">876,385.00</td>
</tr>
<tr >
<td  class="lft lm">Interest income
</td>
<td  class="r">-</td>
<td  class="r">-</td>
<td  class="r rm">-</td>
</tr>
<tr >
<td  class="lft lm">Interest expense
</td>
<td  class="r">-</td>
4

0 回答 0