// Tham số đầu vào volume_threshold = input.float(1.5, title="Volume Spike Threshold", step=0.1) support_resistance_length = input.int(20, title="Support/Resistance Lookback Length")
// Tính toán SMA của volume và kiểm tra volume spike volume_sma = ta.sma(volume, support_resistance_length) volume_spike = volume > volume_sma * volume_threshold
// Xác định hỗ trợ và kháng cự support = ta.lowest(close, support_resistance_length) resistance = ta.highest(close, support_resistance_length)
// Hiển thị các vùng giới hạn có khả năng plot(volume_spike ? support : na, title="Potential Buy Limit Zone", color=color.green, linewidth=2, style=plot.style_stepline) plot(volume_spike ? resistance : na, title="Potential Sell Limit Zone", color=color.red, linewidth=2, style=plot.style_stepline)
// Đánh dấu trên biểu đồ khi có volume spike tại các vùng hỗ trợ/kháng cự bgcolor(volume_spike and close == support ? color.new(color.green, 80) : na, title="Buy Zone") bgcolor(volume_spike and close == resistance ? color.new(color.red, 80) : na, title="Sell Zone")
진정한 TradingView 정신에 따라, 이 스크립트의 저자는 트레이더들이 이해하고 검증할 수 있도록 오픈 소스로 공개했습니다. 저자에게 박수를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 출판물에서 이 코드를 재사용하는 것은 하우스 룰에 의해 관리됩니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.