-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (111 loc) · 3.55 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>
<body>
<Title>money printer go brrrrrr</Title>
<div class="img-div">
<div class="img-container">
<img src="img/jpow.gif" alt="jpow gif" style="width:100%">
</div>
<div class="img-container">
<img src="img/brrr1.gif" alt="money printer go brr gif" style="width:100%" />
</div>
</div>
<h1>💎👐🚀🌙 Last Updated: 2021-02-09 05:06 PM </h1>
<h3><i>obligatory this is not financial advice</i></h3>
<p>Do your research. You can start with
<a href="https://www.barchart.com/options/most-active/stocks?orderBy=optionsTotalVolume&orderDir=desc" target="_blank">this chart for stock activity</a>
(order by <i>Options Vol</i> descending).
</p>
<p>Many thanks and blessings to:
<ul><li><a href="https://www.reddit.com/r/wallstreetbets/" target="_blank">r/wallstreetbets</a> ❤️</li>
<li><a href="https://praw.readthedocs.io/en/latest/index.html" target="_blank">PRAW</a></li>
<li><a href="https://pandas.pydata.org/docs/reference/index.html#api" target="_blank">Pandas</a></li>
<li><a href="https://altair-viz.github.io/index.html" target="_blank">Altair</a></li>
<li><a href="https://github.com/vega/vega-embed" target="_blank">vega-embed</a></li>
</ul>
</p>
<br>
<p><i>Notes:<br>
Clicking on bars will filter the tables.<br>
Click on table row to open the submission/comment.<br>
Count/Date filters in top right corner.</i>
</p>
<hr>
<p>
<h1>Stock Ticker mentions on r/wallstreetbets</h1>
<div id="vis1"></div>
</p>
<hr>
<p>
<h1>Top Due Diligence (DD)</h1>
<div id="vis2"></div>
</p>
<hr>
<p>
<h1>New Daily Discussion comments</h1>
<div id="vis3"></div>
</p>
<script type="text/javascript">
$.getJSON('https://raw.githubusercontent.com/kennydataml/wallstreetbets/master/output/semantic/StockTicker.json', function(data) {
vegaEmbed('#vis1', data).catch(console.error);
});
$.getJSON('https://raw.githubusercontent.com/kennydataml/wallstreetbets/master/output/semantic/DueDiligence.json', function(data) {
vegaEmbed('#vis2', data).catch(console.error);
});
$.getJSON('https://raw.githubusercontent.com/kennydataml/wallstreetbets/master/output/semantic/DailyDiscussion.json', function(data) {
vegaEmbed('#vis3', data).catch(console.error);
});
// vegaEmbed('#vis1', ).catch(console.error);
// vegaEmbed('#vis2', ).catch(console.error);
// vegaEmbed('#vis3', ).catch(console.error);
</script>
<style type="text/css">
body {
color: whitesmoke;
background-color: #000000;
font-family: "Courier New", monospace;
}
ul {
margin: -15px 0;
}
.img-container {
flex: 50%;
padding: 5px;
}
.img-div {
display: flex;
}
h3 {
color: lightgreen
}
a:link,
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover,
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
form.vega-bindings {
position: absolute;
top: 0px;
right: 2.5%;
display: flex;
flex-direction: column;
align-items: stretch;
width: 180px;
background-color: #000033;
}
</style>
</body>
</html>