黄金午后短评:
从小时图来看,短线支撑位位于4363附近,对应小时K线低点。
操作思路上,关注4365一线的回调低多机会:
若价格回落并企稳,可尝试布局多单,预期后续仍有上行空间;
止损参考4350下方,控制风险,耐心等待走势兑现。
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";
}
}
