突破 4355美元后,黄金顺势拉升至 4391美元,多头动能依旧强劲。整体结构未被破坏,回调本身就是机会。
短线关注 4365美元一线的潜在回测支撑,若回踩企稳,可继续低多思路。
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";
}
}
