我对 Yahoo Finance API 没有太多经验。我需要使用这个 API 从雅虎获取所有股票市场的股票代码。有人可以帮我实现这个目的吗?
我认为这可以通过从雅虎下载股票数据来实现。
我已经尝试进入 http://code.google.com/p/yahoo-finance-managed/[^] 上的示例代码,但没有运气。
我很感激任何一点帮助。
到目前为止,我已经尝试过:
TextWriter tw = File.CreateText("StockData.csv");
AlphabeticIDIndexDownload dl1 = new AlphabeticIDIndexDownload();
dl1.Settings.TopIndex = null;
Response<AlphabeticIDIndexResult> resp1 = dl1.Download();
tw.WriteLine("Id|Isin|Name|Exchange|Type|Industry");
Console.WriteLine("Id|Isin|Name|Exchange|Type|Industry");
foreach (var alphabeticalIndex in resp1.Result.Items)
{
AlphabeticalTopIndex topIndex = (AlphabeticalTopIndex)alphabeticalIndex;
dl1.Settings.TopIndex = topIndex;
Response<AlphabeticIDIndexResult> resp2 = dl1.Download();
foreach (var index in resp2.Result.Items)
{
IDSearchDownload dl2 = new IDSearchDownload();
Response<IDSearchResult> resp3 = dl2.Download(index);
foreach (var item in resp3.Result.Items)
{
tw.WriteLine(item.ID + "|" + item.ISIN + "|" + item.Name + "|" + item.Exchange + "|" + item.Type + "|" + item.Industry);
Console.WriteLine(item.ID + "|" + item.ISIN + "|" + item.Name + "|" + item.Exchange + "|" + item.Type + "|" + item.Industry + "Exchange: " + item.Exchange);
}
}
}