forked from arerickson28/stock-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.js
465 lines (350 loc) · 13.8 KB
/
style.js
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
let newsEl = document.querySelector("#news");
let stockInfoEl = document.querySelector("#stockInfo");
let apiKey = "8cd8f664033325a7f14a5b678865218c";
// created a function to fetch api
function getStock(company){
// Added the concatination of + company + default from yahoo finance
fetch("https://apidojo-yahoo-finance-v1.p.rapidapi.com/stock/v2/get-summary?symbol=" + company + "®ion=US", {
"method": "GET",
"headers": {
"x-rapidapi-key": "bd4556767fmsh940acdc2512cbe8p14bf60jsncce8acab51ba",
"x-rapidapi-host": "apidojo-yahoo-finance-v1.p.rapidapi.com"
}
})
.then(response => {
console.log(response);
// added the below line
return response.json();
})
.catch(err => {
console.error(err);
})
// add the below .then to run function
.then(function (data) {
console.log(data);
stockInfo(data);
})
}
// created a function to grab the important stock info
function stockInfo(data){
stockInfoEl.innerHTML="";
//current price
let price = document.createElement("p");
let currentPrice = data.financialData.currentPrice.fmt;
price.textContent = `Current Price: $${currentPrice}`;
//day price range
let dayRange = document.createElement("p");
let dayHigh = data.summaryDetail.dayHigh.fmt;
let dayLow = data.summaryDetail.dayLow.fmt;
dayRange.textContent = `Today's Price Range: $${dayLow} to $${dayHigh}`;
// year price range
let yearRange = document.createElement("p");
let yearHigh = data.summaryDetail.fiftyTwoWeekHigh.fmt;
let yearLow = data.summaryDetail.fiftyTwoWeekLow.fmt;
yearRange.textContent = `The Year's Price Range: $${yearLow} to $${yearHigh}`;
//how much company is worth
let mktCap = document.createElement("p");
let marketCap = data.price.marketCap.fmt;
mktCap.textContent = `Market Cap: $${marketCap}`;
//price earnings ratio: price/earnings
let peRatio = document.createElement("p");
let trailingPE = data.summaryDetail.trailingPE.fmt;
if(!trailingPE) {
trailingPE = 0;
}
peRatio.textContent = `PE Ratio: ${trailingPE}`;
//dividends per year/current price
let divYield = document.createElement("p");
let dividend = data.summaryDetail.dividendYield.fmt;
if(!dividend) {
dividend = "no dividend";
}
divYield.textContent = `Dividend Yield: ${dividend}`;
// display stock info in html
let stockHeading = document.createElement("h3");
stockHeading.textContent = "Stock Information";
stockInfoEl.appendChild(stockHeading);
stockInfoEl.appendChild(price);
stockInfoEl.appendChild(dayRange);
stockInfoEl.appendChild(yearRange);
stockInfoEl.appendChild(mktCap);
stockInfoEl.appendChild(peRatio);
stockInfoEl.appendChild(divYield);
}
function getNews(company) {
let apiUrl = `https://gnews.io/api/v4/search?q=${company}&country=us&sortby=relevance&token=${apiKey}`;
fetch(apiUrl)
.then(function (response) {
return response.json();
})
.then(function (data) {
console.log(data);
displayNews(data);
});
}
function displayNews(data) {
newsEl.innerHTML = "";
for(let i =0; i < 3; i++){
let articleDiv = document.createElement("div");
articleDiv.classList.add("newsCard");
let textDiv= document.createElement("div");
let description = document.createElement("p");
let headline = document.createElement("a");
let image = document.createElement("img");
headline.textContent = data.articles[i].title;
headline.href = data.articles[i].url;
headline.target="_blank";
// populate the description/content of article, it lets you know how many characters are still available to read.
description.textContent = data.articles[i].content;
image.src = data.articles[i].image;
// div container
textDiv.appendChild(headline);
textDiv.appendChild(description);
articleDiv.appendChild(image);
articleDiv.appendChild(textDiv);
newsEl.appendChild(articleDiv);
}
}
//---------------------------------------------
// Rhyce's Code Start
//---------------------------------------------
// Begin Modal JS
// Get the modal
let modal = document.getElementById("myModal");
// Get the <span> element that closes the modal
let span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
// End Modal JS
// let requestUrl = "https://api.polygon.io/v2/aggs/ticker/AAPL/range/1/day/2020-06-01/2020-06-17?apiKey=kYxMgr9oqrEq239cvWobO1J4q6rbXL6S"
// let requestTickers = `https://api.polygon.io/v2/reference/tickers?&market=stocks&search=microsoft&apiKey=kYxMgr9oqrEq239cvWobO1J4q6rbXL6S` ;
let optionsDiv = document.getElementById("companyOptionsDiv") ;
let inputEl ;
let searchInput ;
let main = document.getElementById("main") ;
document.getElementById("searchButton").addEventListener("click", function() {
optionsDiv.removeAttribute("class") ;
inputEl = document.getElementById("searchInput") ;
console.log(inputEl.value)
searchInput = inputEl.value
console.log(searchInput) ;
let requestTickers1 = `https://api.polygon.io/v2/reference/tickers?sort=ticker&search=${searchInput}&perpage=50&page=1&apiKey=kYxMgr9oqrEq239cvWobO1J4q6rbXL6S`
console.log(requestTickers1)
getTickers(requestTickers1);
})
//api parameters
tickers = "tickers?"
stocks = "?market=stocks"
search = "?search=microsoft"
function getTickers(requestTickers1) {
console.log("getTickers function called") ;
let companies = []
fetch(requestTickers1)
.then(function (response) {
console.log(response.status);
// Conditional for the the response.status.
if (response.status === 404) {
// alert("Sorry, no response, please try again") ;
modal.style.display = "block";
}
if (response.status) {
}
return response.json();
})
.then(function (data) {
console.log(data);
let tickerObject = data["tickers"]
for (let i=0; i < tickerObject.length; i++) {
let companyObj = {
"ticker": "",
"name": ""
}
companyObj["ticker"] = tickerObject[i]["ticker"]
companyObj["name"] = tickerObject[i]["name"]
companies.push(companyObj)
}
console.log(companies) ;
let companyOptions = document.getElementById("companyOptions") ;
//Show Options
for (let i=0; i< companies.length; i++) {
let newOption = document.createElement("button") ;
let ticker = companies[i]["ticker"] ;
let name = companies[i]["name"] ;
newOption.textContent = `(${ticker}) ${name}`
newOption.setAttribute("class", "clarifyChoice") ;
newOption.classList.add("optionButton") ;
newOption.setAttribute("value", ticker)
newOption.addEventListener("click", function() {
main.style.display = "inline-flex" ;
inputEl.value = "" ;
optionsDiv.setAttribute("class", "hide") ;
while (companyOptions.firstChild) {
companyOptions.removeChild(companyOptions.firstChild);
} ;
console.log("calling addSearchToHistory")
addSearchToHistory(newOption.textContent, ticker) ;
while (recentSearches.firstChild) {
recentSearches.removeChild(recentSearches.firstChild);
} ;
console.log("calling populateRecentSearches")
populateRecentSearches() ;
console.log("calling getStockData")
getStockData(ticker) ;
getStock(ticker);
getNews(ticker);
})
companyOptions.appendChild(newOption) ;
}
});
}
let company = document.getElementById("company");
let companyLogo = document.getElementById("companyLogo") ;
let companyName = document.getElementById("companyName") ;
let companyDescription = document.getElementById("companyDescription") ;
let companyUrl = document.getElementById("companyUrl") ;
function getStockData(ticker) {
console.log("getStockData function called") ;
let url = `https://api.polygon.io/v1/meta/symbols/${ticker}/company?&apiKey=kYxMgr9oqrEq239cvWobO1J4q6rbXL6S` ;
console.log(url) ;
fetch(url)
.then(function (response) {
console.log(response.status);
// Conditional for the the response.status.
if (response.status === 404) {
// alert("Sorry, no response, please try again") ;
modal.style.display = "block";
}
if (response.status) {
}
return response.json();
}) .then(function (data) {
console.log(data);
let logo = data["logo"] ;
let name = data["name"] ;
let description = data["description"] ;
let url = data["url"] ;
company.textContent = "Company Information";
companyLogo.setAttribute("src", logo) ;
companyName.textContent = name ;
companyDescription.textContent = description ;
companyUrl.textContent = url ;
companyUrl.setAttribute("href", `${url}`) ;
}) ;
}
//Local Storage Stuff
function initializeLocalStorage() {
console.log("initializeLocalStorage function called") ;
if (localStorage.getItem("stockSearchHistory") === null) {
let searchHistoryArray = [] ;
localStorage.setItem("stockSearchHistory", JSON.stringify(searchHistoryArray)) ;
} else {
populateRecentSearches() ;
}
}
let recentSearchesDiv = document.getElementById("recentSearches") ;
function populateRecentSearches() {
console.log("populateRecentSearches function called") ;
let searchHistoryArray = JSON.parse(localStorage.getItem("stockSearchHistory")) ;
for (let i = searchHistoryArray.length -1; i>=0; i--) {
let lastSearch = document.createElement("button") ;
lastSearch.textContent = searchHistoryArray[i]["name"] ;
ticker = searchHistoryArray[i]["ticker"] ;
lastSearch.setAttribute("type", "button") ;
lastSearch.setAttribute("class", "recentSearchButton") ;
lastSearch.classList.add("optionButton")
lastSearch.setAttribute("value", ticker) ;
lastSearch.addEventListener("click", function(event) {
main.style.display = "inline-flex" ;
ticker = event.target.getAttribute("value")
console.log(ticker)
getStockData(ticker)
getStock(ticker)
getNews(ticker)
}) ;
recentSearchesDiv.appendChild(lastSearch) ;
}
}
function addSearchToHistory(text, ticker) {
console.log("addSearchToHistory function called") ;
let storageObj = {
"name": "",
"ticker": ""
}
let searchHistoryArray = JSON.parse(localStorage.getItem("stockSearchHistory")) ;
storageObj["name"] = text ;
storageObj["ticker"] = ticker ;
searchHistoryArray.push(storageObj) ;
localStorage.setItem("stockSearchHistory", JSON.stringify(searchHistoryArray)) ;
}
let clearRecentSearches = document.getElementById("clearRecentButton")
clearRecentSearches.addEventListener("click", function(){
clear() ;
})
function clear() {
console.log("clear function called") ;
main.style.display = "none" ;
while (recentSearches.firstChild) {
recentSearches.removeChild(recentSearches.firstChild);
}
let searchHistoryArray = localStorage.getItem("stockSearchHistory")
searchHistoryArray = []
localStorage.setItem("stockSearchHistory", JSON.stringify(searchHistoryArray)) ;
companyLogo.setAttribute("src", "")
companyName.textContent = "" ;
companyDescription.textContent = "" ;
companyUrl.textContent = ""
}
//Chart Stuff
// const labels = [
// 'seven',
// 'six',
// 'five',
// 'four',
// 'three',
// 'two',
// 'one'
// ];
// let data = {
// labels: labels,
// datasets: [{
// label: 'Closing Stock Price for Last Seven Days',
// backgroundColor: 'rgb(255, 99, 132)',
// borderColor: 'rgb(255, 99, 132)',
// data: [0, 10, 5, 2, 20, 30, 45],
// }]
// };
// let config = {
// type: 'line',
// data,
// options: {
// scales: {
// x: {
// title: {
// color: 'blue',
// display: true,
// text: 'day(s)-ago'
// }
// },
// y: {
// title: {
// color: 'blue',
// display: true,
// text: 'Stock Price ($)'
// }
// }
// }
// }
// };
// var myChart = new Chart(
// document.getElementById('myChart'),
// config
// );
initializeLocalStorage() ;