雅虎管理的财务报表

本文关键字:报表 管理 雅虎 | 更新日期: 2023-09-27 18:33:54

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

雅虎管理的财务报表

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);
        //...
    }