-
Notifications
You must be signed in to change notification settings - Fork 0
/
trades.html
75 lines (71 loc) · 3.44 KB
/
trades.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qombo: Data Navigator - v1.12.0</title>
<link rel="stylesheet" href="old-style.css">
</head>
<body>
<header>
<h1>Qombo: Data Navigator - v1.12.0</h1>
</header>
<main>
<section id="menu-bar">
<div id="menu-list">
<p><span id="menu-trades"><a href="home.html">Home</a> | <a href="blocks.html">Blocks</a> | <a href="txs.html">Transactions</a> | Trades | <a href="accounts.html">Accounts</a> | <a href="apps.html">Apps</a> | <a href="websites.html">Websites</a> | <a href="polls.html">Polls</a> | <a href="assets.html">Assets</a> | <a href="extra.html">Extra</a></span></p>
</div>
</section>
<section id="blockchain-info">
<h2>Current Blockchain Information</h2>
<table id="info-table">
<tr><th>Current Block Height</th><td id="block-height"></td></tr>
</table>
<div id="daily-volumes">
<h3>Daily Volume</h3>
<table id="volume-table">
<tr><th>Chain</th><th>LTC</th><th>BTC</th><th>DOGE</th><th>DGB</th><th>RVN</th><th>ARRR</th></tr>
<tr><th>Coin Spent</th><td id="litecoin-spent"></td><td id="bitcoin-spent"></td><td id="dogecoin-spent"></td><td id="digibyte-spent"></td><td id="ravencoin-spent"></td><td id="piratechain-spent"></td></tr>
<tr><th>QORT Bought</th><td id="litecoin-bought"></td><td id="bitcoin-bought"></td><td id="dogecoin-bought"></td><td id="digibyte-bought"></td><td id="ravencoin-bought"></td><td id="piratechain-bought"></td></tr>
<tr><th>Avg Cost / QORT</th><td id="litecoin-price"></td><td id="bitcoin-price"></td><td id="dogecoin-price"></td><td id="digibyte-price"></td><td id="ravencoin-price"></td><td id="piratechain-price"></td></tr>
</table>
</div>
</section>
<section id="trade-info">
<h2>Available Trades</h2>
<p>Total Available Trades: <span id="total-trades">Loading (not working yet)</span></p>
<div id="trade-data">
</div>
</section>
<section id="recent-trades">
<h2><div id="coin-selector">
<label for="coin-dropdown">Recent Trades -</label>
<select id="coin-dropdown">
<option value="LITECOIN">LTC</option>
<option value="BITCOIN">BTC</option>
<option value="DOGECOIN">DOGE</option>
<option value="RAVENCOIN">RVN</option>
<option value="DIGIBYTE">DGB</option>
<option value="PIRATECHAIN">ARRR</option>
</select>
</div></h2>
<table id="trades-table">
<thead>
<tr>
<th>QORT Amount</th>
<th>Traded From</th>
<th>Traded To</th>
<th>"COIN" Amount</th>
<th>Avg. COIN/QORT</th>
<th>Time</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<button id="load-more">See More Trades</button>
</section>
</main>
<script src="trades.js"></script>
</body>
</html>