我试图获得印度NSE&来自雅虎财经的BSE股票价格数据。我在stackoverflow中经历了一些链接,它提供了以csv格式获取数据。这似乎只适用于非印度股市的价格。我需要获得BSE(孟买证券交易所)& NSE(国家证券交易所)通过雅虎融资。
这是示例link
http://download.finance.yahoo.com/d/quotes.csv?s=BOBSL.BO,JAIPAN.BO,SANGHIIN.BO&f=snl1d1t1ohgdrx
当我尝试获取值时,它会在表的所有值中给出“N / A”。
如何获得股票价格的真正价值?我需要进一步在Java程序中实现它。任何帮助赞赏。!!
这是我的Java代码。
package httpDownloader;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import stock.StockInTime;
public class HistoryHttpDownloader extends HttpDownloader {
public static ArrayList<StockInTime> getHistoricalQuotes(String symbol,
Date from, Date to) {
String data = downloadFile(getHistoryURI(symbol, from, to));
ArrayList<StockInTime> stockHistory = parseHistoryData(data);
return stockHistory;
}
private static String getHistoryURI(String symbol, Date from, Date to) {
Calendar fromDate = new GregorianCalendar();
fromDate.setTime(from);
Calendar toDate = new GregorianCalendar();
toDate.setTime(to);
String uri = "http://ichart.finance.yahoo.com/table.csv?s=";
uri += symbol;
uri += "&a=" + fromDate.get(Calendar.MONTH);
uri += "&b=" + fromDate.get(Calendar.DAY_OF_MONTH);
uri += "&c=" + fromDate.get(Calendar.YEAR);
uri += "&d=" + toDate.get(Calendar.MONTH);
uri += "&e=" + toDate.get(Calendar.DAY_OF_MONTH);
uri += "&f=" + toDate.get(Calendar.YEAR);
return uri += "&g=d";
}
public static ArrayList<StockInTime> parseHistoryData(String data) {
ArrayList<StockInTime> stockHistory = new ArrayList<StockInTime>();
String[] csvRows = data.split("\n");
// First row contains headers, ignored
for (int i = 1; i < csvRows.length; i++) {
String[] stockInfo = csvRows[i].split(",");
StockInTime stockPoint = new StockInTime(
convertToDate(stockInfo[0]), parseDouble(stockInfo[4]));
stockHistory.add(stockPoint);
}
return stockHistory;
}
private static Date convertToDate(String sDate) {
try {
DateFormat dateformater = new SimpleDateFormat("yyyy-MM-dd");
return dateformater.parse(sDate);
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}
}
答案 0 :(得分:1)
问题是你没有从雅虎那里获得CSV中的BSE或NSE数据,这就是你遇到问题的原因。如果我将您的URL更改为垃圾符号,我会得到相同类型的“N / A”响应:http://download.finance.yahoo.com/d/quotes.csv?s=I_AM_A_FAKE_SYMBOL&f=snl1d1t1ohgdrx“。如果您使用有效符号(如MSFT)进行查询,则会获得良好的CSV响应。
你需要弄清楚如何获得好的数据。对于良好的数据,您通常需要为此付费。您可以看到Yahoo最近停止支持这些数据:http://in.answers.yahoo.com/question/index?qid=20130711195331AAoMOCm。