技术要点
整体上升通道未破,但近期高位拉锯,K线影线长,多空僵持。
均线多头排列(蓝线上倾),中期趋势稳,但短期放量滞涨迹象明显。
下方指标红柱缩减,动能放缓,短期回调概率高。
element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on (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";
}
}
