现货黄金日内短期关键阻力位位于 4370–4375 区域。
昨日金价曾短暂突破该区域,但未能站稳,随后回落,说明这里依然是多头需要重点攻克的强阻力带。
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";
}
}

