黄金昨天超级强势,而且基本无回踩,一口气直接拉破了4400,目前最高4497,大涨不言顶,今天的思路我们继续看多,回踩继续多吧,这样的行情基本是不拉死空头不回头,拦截搞空单会让你怀疑人生的,现在的操作要么追多要么等待回踩它修复的时间直接干多,黄金今天关注4500的情况,要是站上很快就会见4560这个位置,昨天拉升的太多理论上今天的欧盘有修复的需要,而且后面是圣诞节假日了,估计后面的黄金会放缓拉升。但就现在的强势情况来看,要大回踩基本是很难的。
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";
}
}
