-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7bfd07
commit 1110f15
Showing
21 changed files
with
921 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,300 @@ | ||
// | ||
// Get info from frebase and show it on the datatable | ||
// | ||
|
||
|
||
|
||
var database = firebase.database(); | ||
var arrayStocksHistory = []; | ||
|
||
var resultadoClone; | ||
|
||
var lastUpdate; | ||
|
||
var comparadores = { | ||
patrLiq: { value: 2000000000, checked: 1 }, | ||
liqCorr: { value: 1.5, checked: 1 }, | ||
roe: { value: 20, checked: 1 }, | ||
divPat: { value: 50, checked: 1 }, | ||
cresc: { value: 5, checked: 1 }, | ||
pvp: { value: 1.5, checked: 1 }, | ||
pl: { value: 15, checked: 1 }, | ||
dy: { value: 2.5, checked: 1 }, | ||
plxpvp: { value: 22.5, checked: 1 }, | ||
} | ||
|
||
initInputs(); | ||
|
||
|
||
// ******************************* | ||
// Logic functions | ||
// ******************************* | ||
database.ref().child('stocks').once('value').then(function(snapshot){ | ||
// console.log(snapshot.val()) | ||
|
||
Object.keys(snapshot.val()).forEach(function(key){ | ||
// console.log(snapshot.val()[key]) | ||
var object = JSON.parse(snapshot.val()[key]); | ||
arrayStocksHistory.push(object) | ||
// console.log(object); | ||
}) | ||
|
||
// Sort by date, the first one will be the newest | ||
arrayStocksHistory.sort(function(a,b){ | ||
var date1 = new Date(a.date); | ||
var date2 = new Date(b.date); | ||
return date2 - date1; | ||
}) | ||
|
||
// console.log(arrayStocksHistory); | ||
buildTable(arrayStocksHistory[0]); | ||
hideLoading(); | ||
|
||
}, function(error){ | ||
console.log("deu erro"); | ||
}) | ||
|
||
// Get last update | ||
database.ref().child('last_date').once('value').then(function(snapshot){ | ||
|
||
lastUpdate = Object.keys(snapshot.val()) | ||
.map(function(key){ | ||
return new Date(snapshot.val()[key]); | ||
}) | ||
.sort(function(a, b) { | ||
console.log(new Date(a), new Date(b), new Date(a) > new Date(b)); | ||
return new Date(b) > new Date(a) ? 1 : -1; | ||
})[0]; | ||
|
||
$("#lastUpdate").append(lastUpdate); | ||
|
||
}, function(error){ | ||
console.log("deu erro"); | ||
}) | ||
|
||
|
||
|
||
var buildTable = function(data){ | ||
// console.log('vamos montar a tabela', data); | ||
|
||
// Put the objects in an array | ||
arrayObjects = []; | ||
Object.keys(data).forEach(function(key){ | ||
arrayObjects.push(data[key]) | ||
}); | ||
|
||
arrayObjects = calculateScores(arrayObjects); | ||
|
||
var resultArray = []; | ||
arrayObjects | ||
.forEach(function(element) { | ||
var innerObject = {}; | ||
|
||
if(Object.keys(element).pop().length > 3) { | ||
Object.keys(element).map(function(innerKey) { | ||
innerObject = element[innerKey]; | ||
innerObject['papel'] = innerKey; | ||
}); | ||
|
||
var myArray = []; | ||
|
||
myArray.push(innerObject["papel"]); | ||
myArray.push(innerObject["nota"]); | ||
myArray.push(innerObject["cotacao"]); | ||
myArray.push(innerObject["Pat.Liq"]); | ||
myArray.push(innerObject["Liq.Corr."]); | ||
myArray.push(innerObject["ROE"]); | ||
myArray.push(innerObject["Div.Brut/Pat."]); | ||
myArray.push(innerObject["Cresc.5a"]); | ||
myArray.push(innerObject["P/VP"]); | ||
myArray.push(innerObject["P/L"]); | ||
myArray.push(innerObject["DY"]); | ||
myArray.push(innerObject["PSR"]); | ||
myArray.push(innerObject["P/Ativo"]); | ||
myArray.push(innerObject["P/Cap.Giro"]); | ||
myArray.push(innerObject["P/EBIT"]); | ||
myArray.push(innerObject["P/Ativ.Circ.Liq."]); | ||
myArray.push(innerObject["EV/EBIT"]); | ||
myArray.push(innerObject["EBITDA"]); | ||
myArray.push(innerObject["Mrg.Liq."]); | ||
myArray.push(innerObject["ROIC"]); | ||
myArray.push(innerObject["Liq.2m."]); | ||
resultArray.push(myArray); | ||
|
||
} | ||
|
||
}); | ||
$('#resultado').DataTable({ | ||
'data': resultArray, | ||
'order' : [[ 1, "desc" ]], // Order by score | ||
"pageLength": 500, // All stocks in the page | ||
"createdRow": function( row, data, dataIndex ) { | ||
if(data[1] >= 7.5) { | ||
$(row).css('background-color', '#cde0cd') | ||
} | ||
} | ||
}); | ||
|
||
// var txt = ""; | ||
// for(var i = 0; i < arrayObjects.length; i++) { | ||
// if(typeof(arrayObjects[i]) == "object"){ | ||
|
||
// Object.keys(arrayObjects[i]).forEach(function(stock){ | ||
|
||
// var greenLine = " class='green-line'"; | ||
// // If we see a stock with score below 7.5 we turnoff green | ||
// if(parseFloat(arrayObjects[i][stock]["nota"]) < 7.5) | ||
// greenLine = ''; | ||
|
||
// var stockLine = "<tr" + greenLine + ">" + | ||
// "<td class='stock'>" + stock + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["nota"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["cotacao"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["Pat.Liq"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["Liq.Corr."] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["ROE"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["Div.Brut/Pat."] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["Cresc.5a"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["P/VP"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["P/L"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["DY"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["PSR"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["P/Ativo"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["P/Cap.Giro"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["P/EBIT"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["P/Ativ.Circ.Liq."] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["EV/EBIT"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["EBITDA"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["Mrg.Liq."] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["ROIC"] + "</td>" + | ||
// "<td>" + arrayObjects[i][stock]["Liq.2m."] + "</td>" + | ||
// "</tr>"; | ||
|
||
// txt += stockLine; | ||
// }) | ||
// } | ||
// } | ||
// $(function(){ | ||
// $(".table-body").append(txt); | ||
// console.log('estou aqui'); | ||
// // $("#resultado").append('dsajdhayasyusadd'); | ||
// }) | ||
} | ||
|
||
var calculateScores = function(stockArray){ | ||
console.log('calculando socres'); | ||
let dividePor = 0; | ||
Object.keys(comparadores).forEach(function(elem){ | ||
if(comparadores[elem].checked) dividePor += 1; | ||
}) | ||
console.log('dividePor', dividePor); | ||
|
||
for(var i = 0; i < stockArray.length; i++) { | ||
if(typeof(stockArray[i]) == "object"){ | ||
Object.keys(stockArray[i]).forEach(function(stock){ | ||
var nota = 0.0; | ||
|
||
var patrLiq = parseFloat(stockArray[i][stock]["Pat.Liq"].replace(/\./g, '').replace(/\,/g, '.')); | ||
if(comparadores.patrLiq.checked && patrLiq > parseFloat(comparadores.patrLiq.value)) | ||
nota = nota + 1 | ||
var liqCorr = parseFloat(stockArray[i][stock]["Liq.Corr."].replace(/\./g, '').replace(/,/g, '.')); | ||
if(comparadores.liqCorr.checked && liqCorr > parseFloat(comparadores.liqCorr.value)) | ||
nota = nota + 1 | ||
var roe = parseFloat(stockArray[i][stock]["ROE"].replace(/\./g, '').replace(/\,/g, '.').replace(/%/g, '')); | ||
if(comparadores.roe.checked && roe > parseFloat(comparadores.roe.value)) | ||
nota = nota + 1 | ||
var divPat = parseFloat(stockArray[i][stock]["Div.Brut/Pat."].replace(/\./g, '').replace(/\,/g, '.').replace(/%/g, '')); | ||
if(comparadores.divPat.checked && divPat * 100 < parseFloat(comparadores.divPat.value) && divPat > 0) | ||
nota = nota + 1 | ||
var cresc = parseFloat(stockArray[i][stock]["Cresc.5a"].replace(/\./g, '').replace(/\,/g, '.').replace(/%/g, '')); | ||
if(comparadores.cresc.checked && cresc > parseFloat(comparadores.cresc.value)) | ||
nota = nota + 1 | ||
var pvp = parseFloat(stockArray[i][stock]["P/VP"].replace(/\./g, '').replace(/\,/g, '.').replace(/%/g, '')); | ||
if(comparadores.pvp.checked && pvp < parseFloat(comparadores.pvp.value) && pvp > 0) | ||
nota = nota + 1 | ||
var pl = parseFloat(stockArray[i][stock]["P/L"].replace(/\./g, '').replace(/\,/g, '.').replace(/%/g, '')); | ||
if(comparadores.pl.checked && pl < parseFloat(comparadores.pl.value) && pl > 0) | ||
nota = nota + 1 | ||
var dy = parseFloat(stockArray[i][stock]["DY"].replace(/\./g, '').replace(/\,/g, '.').replace(/%/g, '')); | ||
if(comparadores.dy.checked && dy > parseFloat(comparadores.dy.value)) | ||
nota = nota + 1 | ||
if(comparadores.plxpvp.checked && pl * pvp < parseFloat(comparadores.plxpvp.value)) | ||
nota = nota + 1; | ||
|
||
stockArray[i][stock]["nota"] = (parseFloat(nota) / dividePor * 10.0).toFixed(2); | ||
|
||
// console.log([stock, stockArray[i][stock]["nota"], patrLiq, liqCorr, roe, divPat, cresc, pvp, pl, dy]) | ||
|
||
}); | ||
} | ||
} | ||
|
||
return stockArray; | ||
} | ||
|
||
|
||
|
||
// Clears the table | ||
var resetTable = function() { | ||
if ( $.fn.DataTable.isDataTable('#resultado') ) { | ||
$('#resultado').DataTable().destroy(); | ||
} | ||
console.log("reseta tabela", $(".table-body").html()) | ||
} | ||
|
||
|
||
// ******************************* | ||
// View state functions | ||
// ******************************* | ||
var hideLoading = function(){ | ||
$('#loading-whell').addClass("hidden"); | ||
$('#info').removeClass("hidden"); | ||
} | ||
|
||
|
||
function initInputs(){ | ||
console.log("chamei"); | ||
$(function() { | ||
$('#patrLiqInput').val(comparadores.patrLiq.value); | ||
$('#liqCorrInput').val(comparadores.liqCorr.value); | ||
$('#divPatInput').val(comparadores.divPat.value); | ||
$('#dyInput').val(comparadores.dy.value); | ||
$('#crescInput').val(comparadores.cresc.value); | ||
$('#roeInput').val(comparadores.roe.value); | ||
$('#pvpInput').val(comparadores.pvp.value); | ||
$('#plInput').val(comparadores.pl.value); | ||
$('#plxpvpInput').val(comparadores.plxpvp.value); | ||
|
||
resultadoClone = $(".table-body").clone(); | ||
}) | ||
} | ||
|
||
// Save rules | ||
$(document).on('click', '#saveRules', function(){ | ||
|
||
// Get if checkbox is checked | ||
comparadores.patrLiq.checked = $('#patrLiqCheckbox:checked').length; | ||
comparadores.liqCorr.checked = $('#liqCorrCheckbox:checked').length; | ||
comparadores.roe.checked = $('#roeCheckbox:checked').length; | ||
comparadores.divPat.checked = $('#divPatCheckbox:checked').length; | ||
comparadores.cresc.checked = $('#crescCheckbox:checked').length; | ||
comparadores.pvp.checked = $('#pvpCheckbox:checked').length; | ||
comparadores.pl.checked = $('#plCheckbox:checked').length; | ||
comparadores.dy.checked = $('#dyCheckbox:checked').length; | ||
comparadores.plxpvp.checked = $('#plxpvpCheckbox:checked').length; | ||
|
||
// get new values | ||
comparadores.patrLiq.value = $('#patrLiqInput').val(); | ||
comparadores.liqCorr.value = $('#liqCorrInput').val(); | ||
comparadores.roe.value = $('#roeInput').val(); | ||
comparadores.divPat.value = $('#divPatInput').val(); | ||
comparadores.cresc.value = $('#crescInput').val(); | ||
comparadores.pvp.value = $('#pvpInput').val(); | ||
comparadores.pl.value = $('#plInput').val(); | ||
comparadores.dy.value = $('#dyInput').val(); | ||
comparadores.plxpvp.value = $('#plxpvpInput').val(); | ||
|
||
resetTable(); | ||
buildTable(arrayStocksHistory[0]); | ||
|
||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
@keyframes App-logo-spin { | ||
from { transform: rotate(0deg); } | ||
to { transform: rotate(360deg); } | ||
} | ||
|
||
th { | ||
background: white; | ||
position: sticky; | ||
top: 0; | ||
z-index: 10; | ||
background: #dddddd; | ||
cursor: pointer; | ||
} | ||
|
||
.hidden{display:none;} | ||
|
||
.screen { | ||
position: relative; | ||
width: 100%; | ||
height: 200px; | ||
} | ||
|
||
|
||
.loading-wrapper { | ||
position: relative; | ||
} | ||
|
||
.loading-wrapper .loading-screen { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
z-index: 10; | ||
background-color: rgba(250,250,250,0.7); | ||
} | ||
|
||
.loading-wheel { | ||
z-index: 11; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
margin-top: -50px; | ||
margin-left: -50px; | ||
border: 8px solid #e3e3e3; | ||
border-radius: 50%; | ||
border-top: 8px solid #4e8df9; | ||
width: 100px; | ||
height: 100px; | ||
transform: translateY(-50%); | ||
-webkit-animation: App-logo-spin 1.5s linear infinite; | ||
animation: App-logo-spin 1.5s linear infinite; | ||
} | ||
|
||
.stock { | ||
color: #0062ff; | ||
} | ||
|
||
.green-line { | ||
background-color: #cde0cd; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## Compiled JavaScript files | ||
**/*.js | ||
**/*.js.map | ||
|
||
# Typescript v1 declaration files | ||
typings/ | ||
|
||
node_modules/ |
Oops, something went wrong.