周三(1月15日)欧盘时段,银价走高,略高于关键的200日移动均线29.97美元。该水平是市场的关键阻力位,突破该水平可能引发新的买入兴趣。29.97美元之后,下一个目标位于30.54美元,即50日移动均线与短期轴心点相交的位置。
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";
}
}
