forked from valmac/ticker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>ticker</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400" rel="stylesheet">
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<nav class="markets" id="markets">
<section class="market">
<h1 class="market-title">bitmex</h1>
<a class="market-instrument" href="#bitmex_btc_usd">btc-usd</a>
<a class="market-instrument" href="#bitmex_coin_future">coin future</a>
<a class="market-instrument" href="#bitmex_dash_future">dash future</a>
<a class="market-instrument" href="#bitmex_eth_future">eth future</a>
</section>
<section class="market">
<h1 class="market-title">gdax</h1>
<a class="market-instrument" href="#gdax_btc_usd">btc-usd</a>
<a class="market-instrument" href="#gdax_btc_eur">btc-eur</a>
<a class="market-instrument" href="#gdax_btc_gbp">btc-gbp</a>
<a class="market-instrument" href="#gdax_eth_btc">eth-btc</a>
<a class="market-instrument" href="#gdax_eth_usd">eth-usd</a>
</section>
</nav>
<nav class="mobile-nav">
<h1 class="instrument" id="instrument">gdax btc-usd</h1>
<h2 class="mobile-title">orders</h2>
<h2 class="mobile-title">trades</h2>
<h2 class="mobile-title">charts</h2>
</nav>
<section class="widget" id="orders">
<h1 class="widget-title">Order Book</h1>
<header class="widget-header">
<span>size</span>
<span>price</span>
<span>price</span>
<span>size</span>
</header>
<div class="widget-data" id="ordersTable"></div>
</section>
<section class="widget" id="trades">
<h1 class="widget-title">Trade History</h1>
<header class="widget-header">
<span>price</span>
<span>size</span>
<span>time</span>
</header>
<div class="widget-data" id="tradesTable"></div>
</section>
<section class="widget" id="charts"></section>
<script src="/app.js"></script>
</body>
</html>