㈠ 目前國內還有沒有能夠查詢股票歷史數據的介面
軟體可以查詢歷史數據的
㈡ 怎麼通過證券行情軟體查詢所有股票的歷史成交量等數據。急
大智慧同花順都有統計功能,可任意取一段時間的統計,很方便。
其次就是編個公式了。
㈢ 搜狐股票歷史數據介面
publicclassStockConnection{
publicstaticvoidmain(String[]args){
URLur=null;
try{
//搜狐行情歷史介面
// ur=newURL(");
//新浪行情歷史介面
ur=newURL("(10000)&symbol=sh600000&end_date=20150809&begin_date=20000101&type=plain");
HttpURLConnectionuc=(HttpURLConnection)ur.openConnection();
BufferedReaderreader=newBufferedReader(newInputStreamReader(ur.openStream(),"GBK"));
Stringline;
while((line=reader.readLine())!=null){
System.out.println(line);
}
}catch(Exceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
}
}
㈣ 請問怎樣用Java獲取股票行情歷史數據新浪、搜狐、百度財經都可以......
publicclassStockConnection{
publicstaticvoidmain(String[]args){
URLur=null;
try{
//搜狐股票行情歷史介面
// ur=newURL("http://q.stock.sohu.com/hisHq?code=cn_300228&start=20130930&end=20131231&stat=1&order=D&period=d&callback=historySearchHandler&rt=jsonp");
//新浪股票行情歷史介面
ur=newURL("http://biz.finance.sina.com.cn/stock/flash_hq/kline_data.php?&rand=random(10000)&symbol=sh600000&end_date=20150809&begin_date=20000101&type=plain");
HttpURLConnectionuc=(HttpURLConnection)ur.openConnection();
BufferedReaderreader=newBufferedReader(newInputStreamReader(ur.openStream(),"GBK"));
Stringline;
while((line=reader.readLine())!=null){
System.out.println(line);
}
}catch(Exceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
}
}
㈤ 如何獲取滬深股票歷史行情數據 http://hq.sinajs.cn/list=sh601006可以拿到實時數據, 但拿不到歷史數據
股票軟體都可以下載更新歷史數據的
㈥ 股票歷史數據介面
直接在網路搜「量億數據」,裡面提供票歷史數據介面
㈦ 如何用Excel獲取所有股票最近一年的歷史交易數據,一個表格分80個工作表,每個工作表放入一隻股票
只能手動更新,或者做個資料庫,這個難度大,非專業做不了。
㈧ 如何獲取股票數據與歷史數據以資料庫方式存儲的
股票歷史數據查詢有個很不錯的網頁工具可以推薦,地址是http://tool.cnfunny.cn/#/打開就可以直接使用,還可以大批量下載,方便省事!
㈨ 如何獲取股票歷史數據
如何快速取得股票交易歷史數據,直接在交易軟體裡面查看歷史成交就知道了,可以設置一個個時間段進行查詢。查詢到的數據可以直接導出。
㈩ 如何快速取得股票交易歷史數據
示例:
最近二十天左右的每5分鍾數據
網頁鏈接
(參數:股票編號、分鍾間隔(5、15、30、60)、均值(5、10、15、20、25)、查詢個數點(最大值242))
返回數據格式:日期、開盤價、最高價、最低價、收盤價、成交量