赛为智能是一家专注于人工智能领域的中国公司,主要从事智能交通系统、智能城市管理系统和智能物联网领域的研发、生产和销售。公司股票在上海证券交易所上市,股票代码为 603986。
当前行情
指标 | 值 |
---|---|
当前价格 | |
涨跌幅 | |
成交量 | |
开盘价 | |
最高价 | |
最低价 | |
市盈率(动态) | |
市净率 |
数据来源:新浪财经
历史行情
历史行情图表显示了赛为智能股票过去一段时间的走势。用户可以调整时间范围和图表类型以查看不同的时间段和指标。
财务数据
指标 | 值 |
---|---|
营业收入 | |
净利润 | |
每股收益 | |
总资产 | |
总负债 | |
股东权益 |
数据来源:同花顺财经
新闻资讯
数据来源:Wind资讯
// 获取实时行情数据fetch('https://hq.sinajs.cn/list=sh603986').then(res => res.text()).then(data => {const result = data.split(',');document.getElementById('current_price').innerHTML = result[3]; // 当前价格document.getElementById('change_percent').innerHTML = result[4]; // 涨跌幅document.getElementById('volume').innerHTML = result[8]; // 成交量document.getElementById('open').innerHTML = result[1]; // 开盘价document.getElementById('high').innerHTML = result[49]; // 最高价document.getElementById('low').innerHTML = result[50]; // 最低价document.getElementById('pe').innerHTML = result[63]; // 市盈率(动态)document.getElementById('pb').innerHTML = result[78]; // 市净率}).catch(error => {console.error('获取实时行情数据失败:', error);});// 获取历史行情数据const historicalChart = Highcharts.stockChart('historical_chart', {title: {text: '赛为智能历史行情'},series: [{name: '收盘价',data: [],type: 'line',tooltip: {valueDecimals: 2}}],rangeSelector: {selected: 1 },xAxis: {type: 'datetime'},yAxis: {title: {text: '价格(元)'},labels: {formatter: function() {return this.value.toFixed(2);}}},plotOptions: {line: {animation: false,dataGrouping: {enabled: false}}},navigator: {enabled: false},credits: {enabled: false}});// 获取财务数据fetch('https://emweb.securities.eastmoney.com/PC_HKF10/FinanceAnalysis/WrapJsonJS.aspx?type=fbgk&code=sh603986').then(res => res.text()).then(data => {const result = JSON.parse(data);document.getElementById('revenue').innerHTML = result.fbgkb.xjjye.slice(0, -2); // 营业收入document.getElementById('net_income').innerHTML = result.fbgkb.xjlbye.slice(0, -2); // 净利润document.getElementById('eps').innerHTML = result.fbgkb.gdjyjl.slice(0, -2); // 每股收益document.getElementById('total_assets').innerHTML = result.fbgkb.zichan.slice(0, -2); // 总资产document.getElementById('total_liabilities').innerHTML = result.fbgkb.fuwu.slice(0, -2); // 总负债document.getElementById('shareholders_equity').innerHTML = result.fbgkb.syqye.slice(0, -2); // 股东权益}).catch(error => {console.error('获取财务数据失败:', error);});// 获取新闻资讯fetch('https://news.baidu.com/ns?word=%E8%B5%9B%E4%B8%BA%E6%99%BA%E8%83%BD&tn=news&from=news&cl=2&rn=20&app=1').then(res => res.text()).then(data => {const parser = new DOMParser();const doc = parser.parseFromString(data, 'text/html');const newsList = doc.querySelectorAll('content_left .result .c-title a');newsList.forEach(item => {const li = document.createElement('li');const a = document.createElement('a');a.href = item.href;a.textContent = item.textContent;li.appendChild(a);document.getElementById('news_list').appendChild(li);});}).catch(error => {console.error('获取新闻资讯失败:', error);});// 获取分析师观点fetch('https://datacenter.wind.com.cn/securities/micro_analyst/标签: 赛为智能股票
版权声明:除非特别标注,否则均为本站转摘于网络,转载时请以链接形式注明文章出处。