-2

is there a way to get Balance Sheet / Income Statement / Etc out of Yahoo-Managed? Anyone know any alternatives if there isn't?

user1167650
  • 3,177
  • 11
  • 34
  • 46
  • This is the exact same question you posted yesterday. Rather than open a new question, continue with the original one as this question is destined for premature-closure. – Metro Smurf May 13 '12 at 05:51

1 Answers1

-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);
        //...
    }
Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
Maas
  • 381
  • 3
  • 13