隔夜金价在美市盘中稍作停歇(技术上遇阻上升通道顶端压力),今天(12月24日)亚市早盘快速取得突破,1小时线上MACD于零轴上方成型金叉,RSI未进入超买区域,均线系统多头排列形态完好,20周期均线已升至4490一线,我们可以在该位附近继续布局做多。
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";
}
}
