股票数据的获取目前有如下两种方法可以获取: 1.http/javascript接口取数据 以大秦铁路(股票代码:601006)为例,如果要获取它的最新行情,只需访问新浪的股票数据接口:http://hq.sinajs.cn/list=sh601006 var hq_str_sh601006="大秦铁路, 27.55, 27.25, 26.91, 27.55, 26.20, 26.91, 26.92, 22114263, 589824680, 4695, 26.91, 57590, 26.90, 14700, 26.89, 14300, 26.88, 15100, 26.87, 3100, 26.92, 8900, 26.93, 14230, 26.94, 25150, 26.95, 15220, 26.96, 2008-01-11, 15:05:32";
这个接口对于JavaScript程序非常方便,通常的使用方式为,静态或动态地在页面中插入: <script type="text/javascript" src="http://hq.sinajs.cn/list=sh601006" charset="gb2312"></script>
这样一来,你就可以在JS中用变量名“hq_str_sh601006”访问大秦铁路的行情数据了。 如果你要同时查询多个股票,那么在URL最后加上一个逗号,再加上股票代码就可以了;比如你要一次查询大秦铁路(601006)和大同煤业(601001)的行情,就这样使用URL:
但如果你要查询大盘指数,情况会有不同,比如查询上证综合指数(000001),使用如下URL: var hq_str_s_sh000001="上证指数,5484.677,28.136,0.52,877247,15587495";
数据含义分别为:指数名称,当前点数,当前价格,涨跌率,成交量(手),成交额(万元); 查询深圳成指的URL为: 最后说一下,新浪并没有明确提供这个查询API,所以他可以在不通知任何人的情况下,改变这种查询方式的接口和实现。 对于股票的K线图,日线图等的获取可以通过请求http://image.sinajs.cn/…./…/*.gif此URL获取,其中*代表股票代码,详见如下: 查看日K线图: http://www.sunhaibing.com/wp-content/uploads/auto_save_image/2011/05/020818yQh.gif 效果: 分时线的查询: http://www.sunhaibing.com/wp-content/uploads/auto_save_image/2011/05/020819FCr.gif 效果: 日K线查询: http://www.sunhaibing.com/wp-content/uploads/auto_save_image/2011/05/020819Aw1.gif 效果: 周K线查询: http://www.sunhaibing.com/wp-content/uploads/auto_save_image/2011/05/0208202AU.gif 效果: 月K线查询: http://www.sunhaibing.com/wp-content/uploads/auto_save_image/2011/05/0208202FF.gif 效果: 1.2 Baidu Google的财经数据 Baidu的股票数据来自baidu的财经频道http://stock.baidu.com. 1.3 其他方式 <% ‘========================== ‘ file: stock_getdata.asp ‘ version: 1.0.0 ‘ copyright (c) czie.com all rights reserved. ‘ web: http://www.czie.com ‘========================== function gethttp(rurl) dim xml on error resume next set xml=server.createobject("Microsoft.XMLHTTP") xml.open "get",rurl,false xml.send if not xml.readystate=4 or not xml.status=200 or err then gethttp="":exit function gethttp=xml.responsetext set xml=nothing end function function getstockdata(code) ‘0=股票名称,1=开盘价格,2=昨收盘价格,3=当前价格,4=最高价,5=最低价,30,31=更新时间 dim checkcode,stockdata,stockdatasplit if len(code)<5 then stockdata="0,0,0,0,0,0,0,0,0,0,0,0":exit function checkcode=mid(code,len(code)-5,1) if int(checkcode)<=4 then stockdata=gethttp("http://hq.sinajs.cn/list=sz"&code&"") if not len(stockdata)=0 then stockdata=split(stockdata,chr(34))(1) end if if int(checkcode)>=5 then stockdata=gethttp("http://hq.sinajs.cn/list=sh"&code&"") if not len(stockdata)=0 then stockdata=split(stockdata,chr(34))(1) end if if len(stockdata)=0 then stockdata="0,0,0,0,0,0,0,0,0,0,0,0" else stockdatasplit=split(stockdata,",") stockdata=""&exstock.checkstr(stockdatasplit(0))&","&stockdatasplit(1)&","&stockdatasplit(2)&","&stockdatasplit(3)&","&stockdatasplit(4)&","&stockdatasplit(5)&","&formatdatetime(""&stockdatasplit(30)&" "&stockdatasplit(31)&"",0)&"" end if ‘0=股票名称,1=开盘价格,2=昨收盘价格,3=当前价格,4=最高价,5=最低价,6=更新时间 getstockdata=stockdata end function function getstockimg(code) dim rndnum,addnum,checkcode,imgsource if len(code)<5 then exit function addnum=4 randomize:rndnum=cint(rnd*addnum) select case rndnum case 0 getstockimg="http://www.10jqka.com.cn/curve/kline/?code="&code&"" imgsource="http://www.10jqka.com.cn" case 1 getstockimg="http://stock.jrj.com.cn/htmdata/KLINE/"&code&".png" imgsource="http://stock.jrj.com.cn" case 2 checkcode=mid(code,len(code)-5,1) if int(checkcode)<=4 then getstockimg="http://image.sinajs.cn/newchart/daily/n/sz"&code&".gif" end if if int(checkcode)>=5 then getstockimg="http://image.sinajs.cn/newchart/daily/n/sh"&code&".gif" end if imgsource="http://finance.sina.com.cn" case 3 getstockimg="http://hq.gazxfe.com/stockchart/realline.chart?"&code&"&1003&SZ 500 330" imgsource="http://hq.gazxfe.com" case 4 getstockimg="http://chartse.stockstar.com/chartserver?code="&code&"" imgsource="http://www.stockstar.com/" end select getstockimg=split(""&getstockimg&"||"&imgsource&"","||") end function function getastockimg() dim rndnum,addnum,checkcode dim getastockimgb,imgsource addnum=6 randomize:rndnum=cint(rnd*addnum) select case rndnum case 0 getastockimg="http://202.109.106.1/gifchartse/gif/000001.gif" getastockimgb="http://202.109.106.1/gifchartse/gif/399001.gif" imgsource="http://www.stockstar.com/" case 1 getastockimg="http://money.163.com/special/100.gif?C39" getastockimgb="http://money.163.com/special/101.gif?HrS" imgsource="http://www.163.com" case 2 getastockimg="http://www.10jqka.com.cn/curve/realtime/index2.php?code=1a0001&w=180&h=140" getastockimgb="http://www.10jqka.com.cn/curve/realtime/index2.php?code=399001&w=180&h=140" imgsource="http://www.10jqka.com.cn" case 3 getastockimg="http://chart.cnlist.com/stockchart/realline.chart?1a0001&1002&SZ 180 140" getastockimgb="http://chart.cnlist.com/stockchart/realline.chart?399001&1002&SZ 180 140" imgsource="http://chart.cnlist.com/" case 4 getastockimg="http://image.sinajs.cn/newchart/small/ish000001.gif?1189176558328" getastockimgb="http://image.sinajs.cn/newchart/small/isz399001.gif?1189176558328" imgsource="http://www.sinajs.cn" case 5 getastockimg="http://218.1.72.66/cgi/pic/sh/realtime/JA000001164143.png" getastockimgb="http://218.1.72.66/cgi/pic/sz/realtime/JA399001164143.png" imgsource="http://www.cnstock.com/" case 6 getastockimg="http://222.73.29.85/img/000001.png" getastockimgb="http://222.73.29.85/img/399001.png" imgsource="http://www.eastmoney.com/" end select getastockimg=split(""&getastockimg&"||"&getastockimgb&"||"&imgsource&"","||") end function %> |
{ 超级计算机囧囧囧 }
近期评论