黄金昨日开盘4338.36美元,最高4449.16美元,最低4337.15美元,收盘4443.21美元,报收大阳线,黄金历史长首次突破4400美元。再经过持续的扫荡之后,黄金选择突破上行,那走势就是11月9日强势模式中的一种了。
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";
}
}
