-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (51 loc) · 1.74 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>EV/EBITDA</title>
<link rel="stylesheet" type="text/css" href="theme.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type='text/javascript' src='config.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.5/require.min.js"></script>
</head>
<body>
<h1>EV/EBITDA</h1>
<p>APIs used: </p>
<a href="https://www.alphavantage.co">alpha vantage</a>
<hr>
<p>Should show the MicroSoft ticker symbol below...</p>
<div class="divChange">
change me
</div>
<button type="button" name="button" onclick="testApi()">show MSFT</button>
<hr>
<p>Should show the most current MSFT share price...</p>
<div class="divPrice">
change me
</div>
<button type="button" name="button" onclick="testApiPrice()">show Price</button>
<hr>
<p>Testing intrinio api</p>
<div class="divCount">
change me
</div>
<button type="button" name="button" onclick="shareCount()">show shareCount</button>
<hr>
<hr>
<a href="https://www.quandl.com">quandl</a><br>
<p>Should say a date and Apple's revenue on that date.</p>
<div class="divQ">
change me
</div>
<button type="button" name="button" onclick="testQuandl()">show date and aapl rev</button>
<hr>
<p>Should say GPRO Marketcap below.</p>
<div class="divGPRO">
change me
</div>
<button type="button" name="button" onclick="testGPRO()">show GPRO market cap</button>
<hr>
<script src="app.js" charset="utf-8"></script>
</body>
</html>