-
Notifications
You must be signed in to change notification settings - Fork 1
/
ethperp.html
88 lines (72 loc) · 2.42 KB
/
ethperp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./resources/css/style.css" />
<link rel="stylesheet" href="./resources/css/fonts/BebasNeue-Regular.ttf" />
<link rel="stylesheet" href="./resources/css/fonts/Montserrat-Regular.ttf" />
<title>ByBit Trades Tracker - ETH/USDT PERP</title>
</head>
<body>
<header>
<h1>ByBit Trades Tracker</h1>
</header>
<div id="container2">
<img src="./resources/images/logo.png">
<h2>Cracking Cryptocurrency</h2>
</div>
<div id="support">
<p>Support us by signing up for a <strong><a href="https://bybit.crackingcryptocurrency.com">ByBit Trading Account</a></strong>!</p>
<p>Zero fees on Spot Markets, Futures, Options, Copy-Trading, Bots, and earn up to $4,400 in bonuses with our <strong><a href="https://bybit.crackingcryptocurrency.com">affiliate code</a></strong>!</p>
<p>Brought to you by <strong><a href="https://crackingcryptocurrency.com">Cracking Cryptocurrency</a></strong> - the #1 resource for Cryptocurrency Traders and Investors.</p>
</div>
<nav>
<div id="navigation">
<ul>
<li>Bitcoin:</li>
<li><a href="./index.html">BTC/USDT PERP</a></li>
<!--<li><a href="./btcspot.html">BTC/USDT SPOT</a></li>-->
<li>Ethereum:</li>
<li><a href="./ethperp.html">ETH/USDT PERP</a></li>
<!--<li><a href="./ethspot.html">ETH/USDT SPOT</a></li>-->
</ul>
<button id="theme-toggle">Light/Dark</button>
</div>
</nav>
<h2>ETH/USDT PERP</h2>
<div id="container">
<table id="total-table">
<thead>
<tr>
<th colspan="5"><h2>Strength Tracker</h2></th>
</tr>
<tr>
<th>Time</th>
<th># of Buys</th>
<th>Buy Volume</th>
<th># of Sells</th>
<th>Sell Volume</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table id="trade-table">
<thead>
<tr>
<th colspan="3"><h2>Recent Trades</h2></th>
</tr>
<tr>
<th>Direction</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="./resources/js/ethperpbundle.js"></script>
</body>
</html>