-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstocks.html
More file actions
50 lines (47 loc) · 1.54 KB
/
stocks.html
File metadata and controls
50 lines (47 loc) · 1.54 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="active.css">
</head>
<body id= "stocks">
<nav id="navbar">
<ul>
<a class="nav-link" href="index.html"><li>Home</li></a>
<a class ="nav-link" href="stocks.html"><li>Stocks</li></a>
<a class ="nav-link" href="budget.html"><li>Budget</li></a>
<a class ="nav-link" href="finterms.html"><li>Fin Terms</li></a>
<a class ="nav-link" href="tips.html"><li>Tips</li></a>
</ul>
</nav>
<!-- TradingView Widget BEGIN -->
<div class="tradingview-widget-container">
<h1>Stock Market</h1>
<div id="tradingview_c2e1f"></div>
<div class="tradingview-widget-copyright"><a href="https://www.tradingview.com/symbols/NASDAQ-AAPL/" rel="noopener" target="_blank"><span class="blue-text">AAPL Chart</span></a> by TradingView</div>
<script type="text/javascript" src="https://s3.tradingview.com/tv.js"></script>
<script type="text/javascript">
new TradingView.widget(
{
"width": 980*.8,
"height": 610*.8,
"symbol": "NASDAQ:AAPL",
"interval": "D",
"timezone": "Etc/UTC",
"theme": "Light",
"style": "1",
"locale": "en",
"toolbar_bg": "#F1F3F6",
"enable_publishing": false,
"allow_symbol_change": true,
"container_id": "tradingview_c2e1f"
}
);
</script>
</div>
<!-- TradingView Widget END -->
</body>
</html>