is there a way to get Balance Sheet / Income Statement / Etc out of Yahoo-Managed? Anyone know any alternatives if there isn't?
Asked
Active
Viewed 745 times
-2
-
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 Answers
-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
-
I've used Yahoo-Managed...but it doesn't seem to have any balance sheet stuff in it. – user1167650 May 14 '12 at 18:37