使用来自交换API的数据在图表上显示24h的高点和低点

时间:2018-06-08 11:17:55

标签: javascript php api chart.js

我真的不知道从哪里开始,请一个神奇的英雄请指出我正确的方向?

我想使用chart.js(http://www.chartjs.org/samples/latest/charts/line/basic.html)的折线图,每15分钟添加当前价格,高和&低比特币。我正在使用HitBTC.com的api

MY Data.php文件包含以下内容:

<?php
$url = "https://api.hitbtc.com/api/2/public/ticker/BTCUSD";
$fgc = json_decode(file_get_contents($url), true);
$high = $fgc['high'];
$last = $fgc['last'];
$low = $fgc['low'];
?>

我的index.php:

<div class="row">
  <div id="border"></div>
  <div class="col" id="in"><p><b class="numbers"><?php echo $high; ?></b><span class="btc">BTC</span><br><span class="fade">Today's Highest Price</span></p></div>
  <div class="col" id="in"><p><b class="numbers"><?php echo $last; ?></b><span class="btc">BTC</span><br><span class="fade">Current Price</span></p></div>
  <div class="col" id="in"><p><b class="numbers"><?php echo $low; ?></b><span class="btc">BTC</span><br><span class="fade">Today's Lowest Price</span></p></div>
  <div id="border"></div>
</div>

我试图用来显示数据的图表: http://www.chartjs.org/samples/latest/charts/line/basic.html enter image description here

我是否需要每15分钟将3个变量存储在数据库中并使用我图表中的数据集?

0 个答案:

没有答案