-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.89 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 1.89 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>OKX/Binance Tick Chart</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" />
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<!-- DevExtreme (Material teal dark) -->
<link rel="stylesheet" href="https://cdn3.devexpress.com/jslib/25.1.4/css/dx.material.teal.dark.css" />
<script src="https://cdn3.devexpress.com/jslib/25.1.4/js/dx.all.js"></script>
<style>
body.dx-viewport { background:#0b0e16; }
.demo-container { max-width: 100%; margin: 24px auto; padding: 0 16px; overflow-x: auto; }
.toolbar {
display: grid;
grid-template-columns: 180px 200px 160px 360px 120px 200px 1fr;
gap: 12px; align-items: center; margin-bottom: 12px;
}
.status { color:#9fb3c8; font-size: 12px; text-align: right; white-space: nowrap; }
.charts { display: grid; grid-template-rows: auto auto; gap: 16px; }
#chartOkx, #chartBnc { height: 500px; }
@media (max-width: 1000px) { .toolbar { grid-template-columns: 1fr; } }
</style>
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div class="toolbar">
<div id="venue"></div>
<div id="symbol"></div>
<div id="period"></div>
<div id="rangeBox"></div>
<div id="submit"></div>
<div id="widthBox"></div>
<div class="status"><span id="status-text">Ready</span></div>
</div>
<div class="charts">
<div id="chartOkx"></div>
<div id="chartBnc"></div>
</div>
</div>
</body>
</html>