OPEN-SOURCE SCRIPT

CAO BA NHAN

//version=5
indicator("Potential Buy/Sell Limit Zones", overlay=true)

// 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")
Bands and ChannelsBill Williams IndicatorsChart patterns

Open-source Skript

Ganz im Sinne von TradingView hat dieser Autor sein/ihr Script als Open-Source veröffentlicht. Auf diese Weise können nun das Script auch andere Trader verstehen und prüfen. Vielen Dank an den Autor! Sie können das Script kostenlos verwenden. Die Nutzung dieses Codes in einer Veröffentlichung wird in unseren Hausregeln reguliert. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Möchten Sie dieses Skript auf einem Chart verwenden?

Haftungsausschluss