-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
200 lines (197 loc) · 9.4 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
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
199
200
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> -->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> -->
</head>
<body>
<div class="jumbotron text-center">
<h1>VIA Semestral Web Application</h1>
<p>Application name: StockInvHelp</p>
<p>Author: Jan Čuhel</p>
<p>Web Application: <a href='https://stock-inv-help.herokuapp.com' target='_blank'>https://stock-inv-help.herokuapp.com</a></p>
<p>API: <a href='https://stock-news-sentiment.herokuapp.com/' target='_blank'>https://stock-news-sentiment.herokuapp.com/sentiment/</a></p>
</div>
<div class="container" style="margin-top: 40px;">
<div class="row">
<div class="col align-self-center">
<h3>Task</h3>
<p>Implement a web application for helping users with stock investing. The app will have the following features:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item d-flex justify-content-between align-items-center">
Plotting a stock price of a selected stock by the user.
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Show the latest news about the selected stock.
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Analyze and show the sentiment of the latest news about the selected stock.
</li>
</ul>
</div>
</div>
<div class="row" style="margin-top: 40px;">
<div class="col-sm-6" >
<h3>Chosen APIs</h3>
<ul>
<li>Stocks API: Alpha Vantage <a href="https://www.alphavantage.co" target="_blank">[Link]</a> (5 requests per minute, 500 per day)</li>
<!-- <p>News API: NewsAPI <a href="https://newsapi.org/docs/get-started" target="_blank">[Link]</a> (100 requests per day)</p> -->
<li>News API: Marketaux API <a href="https://www.marketaux.com/" target="_blank">[Link]</a> (100 requests per day)</li>
</ul>
</div>
<div class="col-sm-3">
<h3>Stack</h3>
<ul>
<li>React.js <a href="https://reactjs.org" target="_blank">[Link]</a></li>
<li>Python <a href="https://www.python.org" target="_blank">[Link]</a></li>
<li>Flask-RESTX <a href="https://flask-restx.readthedocs.io/en/latest/" target="_blank">[Link]</a></li>
<li>Heroku <a href="https://id.heroku.com/login" target="_blank">[Link]</a></li>
</ul>
</div>
<div class="col-sm-3">
<h3>Libraries & Components</h3>
<ul>
<li>Sentiment - Vader NLTK <a href="https://www.nltk.org/_modules/nltk/sentiment/vader.html" target="_blank">[Link]</a></li>
<li>recharts for plotting <a href="https://recharts.org/en-US/" target="_blank">[Link]</a></li>
<li>react-select-search <a href="https://github.com/tbleckert/react-select-search" target="_blank">[Link]</a></li>
</ul>
</div>
</div>
<h3 style="margin-top: 20px;">Images</h3>
<div class="row" style="margin-top: 20px;">
<div class="col-md-3">
<div class="img-thumbnail text-center">
<a href="webapp.png" target="_blank">
<img src="webapp.png" alt="Web app homepage" style="width:100%" class="rounded">
<div class="caption" style="padding-top: 10px; font-size: 0.95em; height: 60px; text-align: center; display: flex; justify-content: center;">
<p style="text-align: center;">Web application homepage.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3">
<div class="img-thumbnail text-center">
<a href="webapp2.png" target="_blank">
<img src="webapp2.png" alt="Web app stock prices and news." style="width:100%" class="rounded">
<div class="caption" style="padding-top: 10px; font-size: 0.95em; height: 60px; text-align: center; display: flex; justify-content: center;">
<p style="text-align: center;">Web application plotting stock prices and showing news.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3">
<div class="img-thumbnail text-center">
<a href="webapp3.png" target="_blank">
<img src="webapp3.png" alt="Web app night mode" style="width:100%" class="rounded">
<div class="caption" style="padding-top: 10px; font-size: 0.95em; height: 60px; text-align: center; display: flex; justify-content: center;">
<p style="text-align: center;">Web application night mode homepage.</p>
</div>
</a>
</div>
</div>
<div class="col-md-3">
<div class="img-thumbnail text-center">
<a href="api.png" target="_blank">
<img src="api.png" alt="Stock News Sentiment REST API" style="width:100%" class="rounded">
<div class="caption" style="padding-top: 10px; font-size: 0.95em; height: 60px; text-align: center; display: flex; justify-content: center;">
<p style="text-align: center;">Stock News Sentiment REST API Swagger documentation.</p>
</div>
</a>
</div>
</div>
</div>
<div class="row" style="margin-top: 40px;">
<div class="col align-self-center">
<h3>Progress</h3>
<ul class="list-group list-group-flush">
<li class="list-group-item d-flex justify-content-between align-items-center">
Text wraping UI changes.
<span class="badge rounded-pill">5.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Deploy final changes.
<span class="badge rounded-pill">3.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Update UI (responsivity).
<span class="badge rounded-pill">3.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Add the calling of the Sentiment API.
<span class="badge rounded-pill">3.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Deploy the API.
<span class="badge rounded-pill">2.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Create REST API via Flask-RESTX.
<span class="badge rounded-pill">2.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Add the showing news.
<span class="badge rounded-pill">2.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Change the news API.
<span class="badge rounded-pill">2.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Change UI.
<span class="badge rounded-pill">2.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Add the plotting of stock prices.
<span class="badge rounded-pill">2.1.2022</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Searching libraries and React components.
<span class="badge rounded-pill">26.12.2021</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Deploy the template.
<span class="badge rounded-pill">15.10.2021</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Update the template.
<span class="badge rounded-pill">13.10.2021</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
<label>Finding a React template [<a href='https://github.com/rajshekhar26/cleanfolio' target='_blank'>link</a>]</label>
<span class="badge rounded-pill">13.10.2021</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Choosing a task.
<span class="badge rounded-pill">12.10.2021</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Choosing APIs.
<span class="badge rounded-pill">3.10.2021</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Describing the app.
<span class="badge rounded-pill">2.10.2021</span>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright" style="margin-top: 40px;">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<p>Copyright Company Name © 2022. All rights reserved.</p>
</div>
</div>
</div>
</div>
</body>
</html>