-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stock.html
57 lines (43 loc) · 1.76 KB
/
Stock.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="Stock.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Document</title>
</head>
<body>
<div class="bar">
<h1>Stock Market Deshboard</h1>
</div>
<div class="wtlist">
<div class="box">
<h1>Watch list</h1>
<div class="search-container">
<input type="text" id="search" value="" onChange="onChangeHandler(event)" />
</div><br>
<button class="butto" id="intra" value="INTRADAY" onclick="intraday()">Intraday</button>
<button class="butto" id="daily" value="DAILY" onclick="daily()">Daily</button>
<button class="butto" id="weekly" value="WEEKLY" onclick="weekly()">Weekly</button>
<button class="butto" id="monthly" value="MONTHLY" onclick="monthly()">Monthly</button><br><br>
<button id="add" onclick="getKey()">ADD</button>
<div class="row">
<div class="col-lg-12" id="DivLists">
</div>
</div>
</div>
<div class="box">
<div class="modalTbleData">
<div class="modalHeading">
<h1>Modal Statistics</h1>
</div>
<table class="table table-striped table-dark" id="modalValues">
</table>
</div>
</div>
</div>
<script src="Stock.js"></script>
</body>
</html>