亚洲AV午夜精品一区二区/欧美日韩亚洲v在线观看/日韩免费视频/久久大香伊蕉在人线国产昨爱

全時(shí)財(cái)經(jīng)

首頁(yè) > 股票 > 正文

今日16只個(gè)股突破半年線

   證券時(shí)報(bào)股市大數(shù)據(jù)新媒體“數(shù)據(jù)寶”統(tǒng)計(jì),截至今日上午10:32分,上證綜指3285.85點(diǎn),收于半年線之上,漲跌幅-0.21%,A股總成交額為2116.55億元。到目前為止今日有16只A股價(jià)格突破了半年線,其中乖離率較大的個(gè)股有江泉實(shí)業(yè)、營(yíng)口港、赤天化等,乖離率分別為9.11%、2.45%、1.84%;英威騰、佩蒂股份、必創(chuàng)科技等個(gè)股乖離率小,剛剛站上半年線。

8月2日突破半年線個(gè)股乖離率排名

證券代碼證券簡(jiǎn)稱今日漲跌幅
(%)
今日換手率
(%)
半年線(元)最新價(jià)(元)乖離率(%)
600212江泉實(shí)業(yè) 10.01 3.91 9.67 10.55 9.11
600317營(yíng) 口 港 2.56 0.45 3.51 3.60 2.45
600227赤 天 化 10.02 1.44 6.69 6.81 1.84
002028思源電氣 3.86 1.92 15.89 16.15 1.62
601111中國(guó)國(guó)航 1.81 0.28 8.92 9.02 1.15
002160常鋁股份 1.25 1.28 8.00 8.09 1.11
002387黑牛食品 1.57 0.96 16.72 16.83 0.67
000735羅 牛 山 1.23 1.24 6.57 6.61 0.66
600867通化東寶 0.98 0.13 17.34 17.45 0.65
000055方大集團(tuán) 1.08 2.43 8.34 8.39 0.55
002482廣田集團(tuán) 0.57 0.21 8.82 8.87 0.51
000612焦作萬(wàn)方 1.19 0.78 9.32 9.36 0.45
002062宏潤(rùn)建設(shè) 3.52 1.05 6.16 6.18 0.35
300667必創(chuàng)科技 0.39 4.17 33.43 33.46 0.10
300673佩蒂股份 1.90 4.34 40.19 40.21 0.05
002334英 威 騰 0.13 0.40 7.70 7.70 0.01
<script type="text/javascript">$(document).ready(function (){ var $denglu = $('.denglu'); var $tc_box = $('.tc_box'); var $bghover = $('.bghover'); var $close = $('.close'); $denglu.bind('click',function(){ $tc_box.show(); $bghover.show(); showCount('.tc_box'); }); $close.bind('click',function(){ $tc_box.hide(); $bghover.hide(); }); function showCount(obj){ var $body_height = $('body').css('height'); $bghover.css('height', $body_height); var $scroll_top = $(window).scrollTop(); var $obj = $(obj); var $width = parseInt($obj.css('width')); var $height = parseInt($obj.css('height')); $obj.css({ marginLeft : -($width / 2), marginTop : -($height / 2) + $scroll_top }); } $('#username').keydown(function (event){ if (event.keyCode == 13) { $('#ajaxlogin').click(); } }); $('#password').keydown(function (event){ if (event.keyCode == 13) { $('#ajaxlogin').click(); } }); //手動(dòng)登錄部分與處理 $('#ajaxlogin').click(function (){ var message = ""; var err = false; if($('#username').val()==''){ message = "用戶名或密碼不能為空"; err = true; } if($('#password').val()==''){ message = "用戶名或密碼不能為空"; err = true; } if(err){ $("#loginError").html("*"+message); $("#loginError").show(); return false; } $("#ajaxlogin").attr("disabled", true); $("#ajaxlogin").css("background","#ababab"); var isrember = '0'; if($("#remUsername").attr("checked")){ isrember = '1'; } $.ajax({ type: "POST", dataType: "json", url: "/passport/ajaxLogin.do", data:{ username:$('#username').val(), password:$('#password').val(), isrember:isrember }, cache: false, success:function (data) //回傳函數(shù) { if(data.result==1){ //如果已登錄,在這里做相應(yīng)處理 //window.location.href=""; $('#username').val(""); $('#password').val(""); $("#loginError").html(""); $("#loginBox").hide(); $bghover.hide(); $("#notLogin").hide(); $("#nick").html(data.user.nick); $("#hasLogin").show(); }else{ $("#loginError").html("*用戶名或密碼不正確"); $("#loginError").show(); } $("#ajaxlogin").removeAttr("disabled"); $("#ajaxlogin").css("background","#b90a0a"); }, error:function (xmlHttpRequest, textStatus, errorThrown){ $("#ajaxlogin").removeAttr("disabled"); $("#ajaxlogin").css("background","#b90a0a"); //alert("服務(wù)器維護(hù),請(qǐng)稍候登錄"); } }); }); $("#loginBox").hide(); $("#hasLogin").hide(); $("#loginError").hide(); //自動(dòng)登錄 //檢查用戶登錄狀態(tài)并處理,注意這里的提交參數(shù)與上面方式不同 var ssoreceivetgturl = 'https://passport.stcn.com/wsLoginAssis.js?'+new Date().getTime(); $.getScript(ssoreceivetgturl, function(){ if( typeof tgtId !='undefined' && (tgtId=='null' || tgtId==null)){ tgtId = ''; } $.post( '/passport/ajaxLogin.do', { tgtId:(tgtId!==undefined)?tgtId:'' }, function (data) //回傳函數(shù) { if(data.result==1){ //如果已登錄 //window.location.href=""; $("#notLogin").hide(); $("#loginBox").hide(); $("#nick").html(data.user.nick); $("#hasLogin").show(); return; } }, 'json' ); });});function logout(){ //處理ajax超時(shí)的范例 var isneedtoKillAjax = true; // set this true var ssologoutUrl = "https://passport.stcn.com/ajaxlogout?jsoncallback=?"; var myAjaxCall = $.getJSON(ssologoutUrl, function(data) { isneedtoKillAjax = false; //TODO:用戶注銷(xiāo)后可以做的事 $.post("/passport/ajaxLogout.do",{}, function(data) { $("#notLogin").show(); $("#loginError").html(""); $("#loginBox").hide(); $("#loginError").hide(); $("#hasLogin").hide(); $("#nick").html(""); $("#ajaxlogin").removeAttr("disabled"); } ); } ); setTimeout(function() { if(isneedtoKillAjax){ myAjaxCall.abort(); } }, 5000); }</script> <script type="text/javascript" src="http://img.stcn.com/templates/stcn/css/index2015/jQselect.js"></script><script type="text/javascript"> var content = '';//第一頁(yè)內(nèi)容緩存 var context = '';//全文內(nèi)容緩存 $(function(){ content = $('#ctrlfscont').html(); }) function fulltext(){ //單頁(yè)閱讀 if(context =='') $.getJSON('http://app.stcn.com/'+'?app=article&controller=article&action=fulltext&jsoncallback=?&contentid='+contentid,function(data){ context = data.content; $('#ctrlfscont').html(data.content); $('#show-all-cont').html('分頁(yè)閱讀').parent().siblings().hide(); $('.bor-ccc').hide(); isfulltext = true; holdpic(); }); else{ $('#ctrlfscont').html(isfulltext?content:context); $('#show-all-cont').html(isfulltext?'單頁(yè)閱讀':'分頁(yè)閱讀').parent().siblings().toggle(isfulltext === true); isfulltext = (isfulltext === false); $('.bor-ccc').show(); holdpic(); } } //cmstop后臺(tái)pv統(tǒng)計(jì)代碼 $.getJSON(APP_URL+'?app=system&controller=content&action=stat&jsoncallback=?&contentid='+contentid); function holdpic(){//控制內(nèi)容區(qū)域的的圖片大小并為過(guò)大的圖片添加查看原圖 var options = { imageLoading:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-ico-loading.gif', imageBtnPrev:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-btn-prev.gif', imageBtnNext:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-btn-next.gif', imageBtnClose:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-btn-close.gif', imageBlank:'http://img.stcn.com/'+'js/lib/lightBox/lightbox-blank.gif' }; $('#ctrlfscont').find('img').each(function(){ var img = this; if (img.width>608) { img.style.width = '600px'; $(img).removeAttr('height'); var aTag = document.createElement('a'); aTag.href = img.src; $(aTag).addClass('bPic') .insertAfter(img).append(img) .lightBox(options); } }); } $(window).load(function(){ holdpic(); }); var $menu_li = $('.menu_con').find('li') $menu_li.bind('mouseover',function(){ if( $(this).attr('class') != 'cur'){ $(this).addClass("cur1").siblings().removeClass("cur1"); }else{ $(this).addClass("cur").siblings().removeClass("cur1"); } }) $menu_li.bind('mouseout',function(){ $(this).removeClass('cur1'); }) //文章發(fā)布時(shí)間離現(xiàn)在未超過(guò)24小時(shí)才統(tǒng)計(jì)全媒體網(wǎng)站記錄點(diǎn)擊量 function checkArticleHits(){ try { //獲取文章發(fā)布時(shí)間 var begindate = publishdate; var beginsecond = changeDate(begindate).getTime(); //獲取客戶端當(dāng)前系統(tǒng)時(shí)間 var date = new Date(); var endsecond = date.getTime(); var days = (endsecond-beginsecond)/(24*3600*1000); if(days < 1){ // 全媒體網(wǎng)站記錄點(diǎn)擊量接口 doArticleHits(contentid, publishdate); } } catch (e) { } } // 如果你的時(shí)間是字符串 yyyy-MM-dd hh:mm:ss ,下面函數(shù)可以轉(zhuǎn)成時(shí)間 function changeDate(str){ try{ var newstr = str.replace(/-/g,'/'); return new Date(newstr); }catch (e){ alert("轉(zhuǎn)換時(shí)間出錯(cuò),原因:" + e.message); } } checkArticleHits(); </script>

本站部分文章來(lái)源于網(wǎng)絡(luò),版權(quán)屬于原作者所有;如有轉(zhuǎn)載或引用文章/圖片涉及版權(quán)問(wèn)題,請(qǐng)聯(lián)系我們處理!

相關(guān)推薦