-
Notifications
You must be signed in to change notification settings - Fork 0
/
watchlist.ejs
198 lines (189 loc) · 8.14 KB
/
watchlist.ejs
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<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.0">
<!-- adding external bootstrap5 and CSS3 links -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/watchlist.css">
<title>Discover Stocks</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#"><i>ExpandUr</i>Wealth</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="/domestic_stocks" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Discover
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/domestic_stocks">Domestic Stocks</a></li>
<li><a class="dropdown-item" href="#">US Stocks</a></li>
<li><a class="dropdown-item" href="/mutual_funds_explore">Mutual Funds</a></li>
<li><a class="dropdown-item" href="/ipo">IPO</a></li>
<li><a class="dropdown-item" href="#">Gold</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/domestic_holdings">My Holdings</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Orders</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/watchlist">Watch-List</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Learn&Invest
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="/fundamental_analysis">Fundamental and Industry Analysis</a></li>
<li><a class="dropdown-item" href="#">Technical Analysis</a></li>
<li><a class="dropdown-item" href="#">Macro & Micro Economics</a></li>
<li><a class="dropdown-item" href="#">Financial & Investing Psychology</a></li>
<li><a class="dropdown-item" href="#">Personal Finance</a></li>
<li><a class="dropdown-item" href="/stock_market_terminology">Stock Market Terminology</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Market News</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Support
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Support Team</a></li>
<li><a class="dropdown-item" href="#">Common Customer Queries</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
My Account
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#"><h5><%= name %></h5> Account Details ></li>
<a class="dropdown-item" href="#">Settings</a>
<div class="dropdown-divider"></div>
<li>
<form action="/logout?_method=DELETE" method="POST">
<button type="submit" class="dropdown-item">Logout</button>
</form>
</li>
</ul>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search about stocks here..." aria-label="Search">
<button class="btn btn-success" type="submit">Explore</button>
</form>
</div>
</div>
</nav>
<!-- heading -->
<h3 id="welcome">
<%= name %>!, save and track the performance of your favorite stocks without actually investing
in them
</h3>
<br>
<!-- Market Indices -->
<div class="container">
<div class="row">
<div class="col">
<!-- 1st column info -->
<a href="#" id="nifty-50"><h5>Nifty 50 (Market Index)</h5></a>
<p id="index1-price">---</p>
</div>
<div class="col">
<!-- 2nd column info -->
<a href="#" id="sensex"><h5>Sensex (Market Index)</h5></a>
<p id="index2-price">---</p>
</div>
<div class="col">
<!-- 3rd column info -->
<a href="#" id="bank-nifty"><h5>Bank Nifty (Market Index)</h5></a>
<p id="index3-price">---</p>
</div>
</div>
</div>
<h4 id="heading-1">Your Watchlist</h4>
<!-- Watchlist stocks -->
<table class = table-light id="stock-table">
<thead>
<tr>
<th>#</th>
<th>Stock Name</th>
<th>Industry / Sector</th>
<th>Market Cap (in Crores (₹))</th>
<th>Current Market Price (₹)</th>
</tr>
</thead>
<tbody>
<tr class="stock-row" data-stock="CANARA BANK">
<td>1</td>
<td>Canara Bank</td>
<td>Banking</td>
<td id="market-cap-1"></td>
<td id="price-1"></td>
</tr>
<tr class="stock-row" data-stock="LATENT VIEW ANALYTICS">
<td>2</td>
<td>Latent View Analytics</td>
<td>Information Tech.</td>
<td id="market-cap-2"></td>
<td id="price-2"></td>
</tr>
<tr class="stock-row" data-stock="PARAS DEFENCE AND SPACE">
<td>3</td>
<td>Paras Defence and Space Technologies</td>
<td>Aerospace & Defence</td>
<td id="market-cap-3"></td>
<td id="price-3"></td>
</tr>
<tr class="stock-row" data-stock="TATA POWER">
<td>4</td>
<td>Tata Power</td>
<td>Power, Energy</td>
<td id="market-cap-4"></td>
<td id="price-4"></td>
</tr>
<tr class="stock-row" data-stock="BHARTI AIRTEL">
<td>5</td>
<td>Bharti Airtel</td>
<td>Telecommunication</td>
<td id="market-cap-5"></td>
<td id="price-5"></td>
</tr>
</tbody>
</table>
<!-- Buy / Sell pop up -->
<div class="modal">
<div class="modal-content">
<span class="close">×</span>
<a href="/company-details-and-fundamentals" id="about-stock"><h5 class="stock-name"></h5></a>
<div class="quantity-field">
<label for="quantity"><h6><b>Quantity:</b></h6></label>
<input type="number" id="quantity" name="quantity" min="1" max="100" value="1">
</div>
<br>
<div class="buy-sell-options">
<button class="buy-button">Buy</button>
<button class="sell-button">Sell</button>
</div>
</div>
</div>
<!-- adding bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- adding external JS -->
<script src="./js/watchlist.js"></script>
</body>
</html>