-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Binance Market Data WebSocket Implementation</title>
<script src="https://unpkg.com/lightweight-charts/dist/lightweight-charts.standalone.production.js"></script>
<script src="./js/chart.js" type="module"></script>
<script src="./js/select.js" type="module"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<style></style>
<h1 class="heading">Real-Time Crypto Awaits...!</h1>
<div id="controls">
<label for="cryptoSelector">Select Cryptocurrency:</label>
<select id="cryptoSelector">
<option value="ethusdt">ETH/USDT</option>
<option value="bnbusdt">BNB/USDT</option>
<option value="dotusdt">DOT/USDT</option>
</select>
<label for="intervalSelector">Select Time Interval:</label>
<select id="intervalSelector">
<option value="1m">1 Minute</option>
<option value="3m">3 Minutes</option>
<option value="5m">5 Minutes</option>
</select>
</div>
<div id="container" style="height: 400px; width: 600px;"></div>
</body>
</html>