-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderbook.html
137 lines (108 loc) · 5.71 KB
/
orderbook.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Orderbook</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="card-group">
<div class="card">
<div class="card-body">
<!------------------------------------------------------------------------------>
<table class="table table-hover table-responsive table-sm">
<thead class="text-center">
<tr>
<th>Price</th>
<th><span class="asset">Asset</span></th>
<th>Total <span class="asset">Asset</span></th>
<th><span class="quote">Quote</span></th>
<th>Total <span class="quote">Quote</span></th>
</tr>
</thead>
<tbody class="text-center" id="orderBookDataBuy">
</tbody>
</table>
<!------------------------------------------------------------------------------>
</div>
<div class="card-footer ">
<small class="text-muted "></small>
</div>
</div>
<div class="card ">
<div class="card-body ">
<!------------------------------------------------------------------------------>
<table class="table table-hover table-responsive table-sm ">
<thead class="text-center">
<tr>
<th>Total <span class="quote">Quote</span></th>
<th><span class="quote">Quote</span></th>
<th>Total <span class="asset">Asset</span></th>
<th><span class="asset">Asset</span></th>
<th>Price</th>
</tr>
</thead>
<tbody class="text-center" id="orderBookDataSell">
</tbody>
</table>
<!------------------------------------------------------------------------------>
</div>
<div class="card-footer ">
<small class="text-muted "></small>
</div>
</div>
</div>
<div class="float text-center">
<button class="btn btn-success" id="bidTotalRange"> </button> <button class="btn btn-primary" id="volumeDiff"></button> <button class="btn btn-danger" id="askTotalRange"> </button>
</div>
<div class="float2 text-center">
<button class="btn btn-primary" id="marketPrice"></button>
</div>
<div hidden id="storageElem"></div>
<!-- Modal -->
<div class="modal fade" id="settingsModal" tabindex="-1" role="dialog" aria-labelledby="settingsModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="settingsModalLabel">Settings</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="input-group mb-2 mr-sm-2">
<div class="input-group-postpend">
<div class="input-group-text">Bid - Low</div>
</div>
<input type="number" step="0.5" class="form-control" id="dnLimitBidInput" value="0" placeholder="EX: 200">
<input type="number" step="0.5" class="form-control" id="upLimitBidInput" value="0" placeholder="EX: 400">
<div class="input-group-prepend">
<div class="input-group-text">Bid - High</div>
</div>
</div>
<div class="input-group mb-2 mr-sm-2">
<div class="input-group-postpend">
<div class="input-group-text">Ask - Low</div>
</div>
<input type="number" step="0.5" class="form-control" id="dnLimitAskInput" value="0" placeholder="EX: 200">
<input type="number" step="0.5" class="form-control" id="upLimitAskInput" value="0" placeholder="EX: 400">
<div class="input-group-prepend">
<div class="input-group-text">Ask - High</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.4.1.min.js "></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.js"></script>
<script src="./app.js"></script>
</html>