任何成功的交易者都需要遵循严格的交易原则——不套单,不锁单!市场的生存法则就是弱肉强食,没有人注定倒霉,但注定有一批人将被市场所淘汰,战争不会给军人解释的机会,投资者并不会因为你是弱者而享受优先待遇,大浪淘沙,沉者为金,风卷残云,“剩”者为王。
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";
}
}

