-2

有没有办法从雅虎管理中获取资产负债表/损益表/等?如果没有,有人知道任何替代方案吗?

4

1 回答 1

-1
using MaasOne.Finance.YahooFinance

    CompanyStatisticsDownload dl = new CompanyStatisticsDownload();
    dl.Settings.ID = "YHOO";
    Response<CompanyStatisticsResult> resp = dl.Download();
    if (resp.Connection.State == ConnectionState.Success)
    {
        CompanyFinancialHighlights hl = resp.Result.Item.FinancialHighlights;
        double ebitda = hl.EBITDAInMillion * Math.Pow(10, 6);
        //...
    }
于 2012-05-13T02:29:35.180 回答