Ticker |
% Change |
Price |
Volume(Today)/Average |
52Whigh |
52Wlow |
UVXY |
10.76 |
17.7 |
0.98 |
44.9 |
11.16 |
EWZ |
1.65 |
33.36 |
0.66 |
39.59 |
26.37 |
USO |
0.88 |
81.29 |
0.63 |
87.84 |
43.37 |
EWJ |
0.35 |
56.565 |
0.91 |
73.16 |
54.54 |
LQD |
0.31 |
112.215 |
0.61 |
134.39 |
110.19 |
BND |
0.28 |
76.3 |
0.74 |
85.58 |
75.14 |
BKLN |
-0.02 |
20.825 |
0.98 |
22.02 |
20.61 |
XLRE |
-0.14 |
41.8 |
0.59 |
51.87 |
41.17 |
EWA |
-0.17 |
23.79 |
0.67 |
27.16 |
22.19 |
HYG |
-0.17 |
76.38 |
0.99 |
86 |
75.87 |
IYR |
-0.31 |
93.865 |
0.58 |
116.41 |
92.89 |
XLV |
-0.42 |
127.685 |
0.58 |
143.42 |
118.89 |
EEM |
-0.49 |
40.77 |
0.62 |
55.11 |
38.95 |
IEMG |
-0.52 |
50.305 |
0.51 |
66.21 |
48.08 |
FXI |
-0.58 |
30.125 |
0.67 |
46.9 |
26.13 |
VEA |
-0.64 |
43.56 |
0.58 |
52.38 |
41.98 |
XLP |
-0.67 |
70.075 |
0.66 |
81.34 |
67.15 |
VNQ |
-0.73 |
93.54 |
0.45 |
116.08 |
92.88 |
XLU |
-0.8 |
70.97 |
0.52 |
77.23 |
61.62 |
UNG |
-0.86 |
27.74 |
0.74 |
30.24 |
10.25 |
VGK |
-0.89 |
56.54 |
0.65 |
69.42 |
54.55 |
XLE |
-1.06 |
80.555 |
0.62 |
84.57 |
43.61 |
GDX |
-1.24 |
31.75 |
0.58 |
41.61 |
28.33 |
OIH |
-1.33 |
262.995 |
0.4 |
312.52 |
162.78 |
SLV |
-1.41 |
19.985 |
0.57 |
26.43 |
19.01 |
XOP |
-1.59 |
133.81 |
0.58 |
147.67 |
70.56 |
XLC |
-1.71 |
56.88 |
0.67 |
85.81 |
56.28 |
SPY |
-1.84 |
382.3 |
0.76 |
478.49 |
380.54 |
IVV |
-1.95 |
383.46 |
0.76 |
480.47 |
382.17 |
XLF |
-1.99 |
32.325 |
0.8 |
41.54 |
32.225 |
VOO |
-2.0 |
350.76 |
1.03 |
439.78 |
349.76 |
XLB |
-2.08 |
80.9 |
0.55 |
91.96 |
77.65 |
IWM |
-2.11 |
172.81 |
0.83 |
243.24 |
168.9 |
XBI |
-2.2 |
67.875 |
0.6 |
141.5 |
61.78 |
XLK |
-2.51 |
127.49 |
0.54 |
176.71 |
127.035 |
XLI |
-2.8 |
88.18 |
0.72 |
107.52 |
88.035 |
QQQ |
-2.85 |
281.33 |
0.74 |
407.68 |
284.94 |
JETS |
-3.18 |
18.9 |
0.71 |
27.26 |
16.88 |
SMH |
-3.38 |
220.35 |
0.89 |
318.69 |
215.23 |
XME |
-3.71 |
49.26 |
0.47 |
66.63 |
38.48 |
BITO |
-3.76 |
17.92 |
0.77 |
44.29 |
17.23 |
XLY |
-4.24 |
136.84 |
0.67 |
214.41 |
136.33 |
XRT |
-4.86 |
59.645 |
1.24 |
103.08 |
59.26 |
ARKK |
-4.93 |
40.91 |
0.97 |
131.77 |
35.1 |
BITQ |
-6.33 |
7.765 |
1.29 |
34.7 |
6.85 |
function chartOptions() {
gradientBarChartConfiguration = {
maintainAspectRatio: true,
legend: {
display: false
},
events: ["mousemove", "mouseout", "click", "touchstart", "touchmove", "touchend"],
onClick: function(e, data) {
var base = this.chart.chartArea.bottom;
var height = this.chart.chart.height;
var width = this.chart.chart.scales['x-axis-0'].width;
var offset = $(this).offset().top - $(window).scrollTop();
if(e.pageY > base + offset){
var count = this.chart.scales['x-axis-0'].ticks.length;
var padding_left = this.chart.scales['x-axis-0'].paddingLeft;
var padding_right = this.chart.scales['x-axis-0'].paddingRight;
var xwidth = (width-padding_left-padding_right)/count;
// don't call for padding areas
var bar_index = (e.offsetX - padding_left - this.chart.scales['y-axis-0'].width) / xwidth;
if(bar_index > 0 & bar_index < count){
bar_index = Math.floor(bar_index);
let label = "/apps/stockmarket/" + this.chart.data.labels[bar_index] + "-analysis/";
window.open(label);
}
}
},
tooltips: {
backgroundColor: '#f5f5f5',
titleFontColor: '#333',
bodyFontColor: '#666',
bodySpacing: 4,
xPadding: 12,
mode: "nearest",
intersect: 0,
position: "nearest"
},
responsive: true,
scales: {
yAxes: [{
gridLines: {
drawBorder: false,
color: 'rgba(29,140,248,0.1)',
zeroLineColor: "transparent",
},
ticks: {
fontColor: "#9e9e9e"
}
}],
xAxes: [{
gridLines: {
drawBorder: false,
color: 'rgba(29,140,248,0.1)',
zeroLineColor: "transparent",
},
ticks: {
padding: 20,
fontColor: "#9e9e9e"
}
}]
}
};
return gradientBarChartConfiguration;
}
function initStockGainersChart(canvaschart) {
var ctx = document.getElementById(canvaschart).getContext("2d");
var gradientStroke = ctx.createLinearGradient(0, 230, 0, 50);
gradientStroke.addColorStop(1, 'rgba(29,140,248,0.2)');
gradientStroke.addColorStop(0.4, 'rgba(29,140,248,0.0)');
gradientStroke.addColorStop(0, 'rgba(29,140,248,0)'); //blue colors
var myChart = new Chart(ctx, {
type: 'bar',
responsive: true,
legend: {
display: false
},
data: {
labels: stockgainers_labels,
datasets: [{
label: "% Change",
fill: true,
backgroundColor: gradientStroke,
hoverBackgroundColor: gradientStroke,
borderColor: '#1f8ef1',
borderWidth: 2,
borderDash: [],
borderDashOffset: 0.0,
data: stockgainers,
}]
},
options: chartOptions()
});
}