特斯拉股票行情 (特斯拉股票行情实时查询最新)
访客
23
以下数据来自网络,仅供参考,不构成投资建议。
当前行情
项目
|
值
|
---|
股票代码
|
TSLA
|
股票名称
|
特斯拉
|
当前价格
|
开盘价
|
最高价
|
最低价
|
成交量
|
市值
|
历史行情
// 实时获取特斯拉股票行情function getStockData() {$.ajax({url: "https://api.tiingo.com/tiingo/daily/tsla?token=YOUR_API_KEY",dataType: "json",success: function(data) {if (data && data.length > 0) {const stockData = data[0];$("current_price").html(stockData.close);$("open_price").html(stockData.open);$("high_price").html(stockData.high);$("low_price").html(stockData.low);$("volume").html(stockData.volume);$("market_cap").html(stockData.marketCap);}},error: function(error) {console.error(error);alert("获取股票行情失败,请稍后再试。");}});}// 定时刷新股票行情setInterval(getStockData, 5000);// 获取历史股票行情function getHistoricalData() {$.ajax({url: "https://api.tiingo.com/tiingo/daily/tsla/prices?startDate=2023-01-01&endDate=2023-12-31&token=YOUR_API_KEY",dataType: "json",success: function(data) {if (data && data.length > 0) {$("historical_data").html("");for (let i = 0; i
${historicalData.date} | ${historicalData.open} | ${historicalData.high} | ${historicalData.low} | ${historicalData.close} | ${historicalData.volume} | `);}}},error: function(error) {console.error(error);alert("获取股票历史行情失败,请稍后再试。");}});}// 一次性获取历史股票行情getHistoricalData();
版权声明:除非特别标注,否则均为本站转摘于网络,转载时请以链接形式注明文章出处。