OPEN-SOURCE SCRIPT

NEIROCTO Impulse Watcher (Alert Ready)

74
//version=5
indicator("NEIROCTO Combo Watcher (Pump vs Dump)", overlay=true)

// === RSI и его производные ===
rsi = ta.rsi(close, 14)
rsi_sma = ta.sma(rsi, 5)
rsi_up = rsi > rsi_sma
rsi_down = rsi < rsi_sma

// === Волатильность ===
volatility = math.abs(close - close[1]) / close[1] * 100
volatility_trigger = volatility > 3

// === Объёмы ===
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma

// === Условие пампа ===
pump_condition = rsi > 45 and rsi_up and volatility_trigger and volume_up
// === Условие отката ===
dump_condition = rsi < 40 and rsi_down and volatility_trigger and volume_up

// === Фон ===
bgcolor(pump_condition ? color.new(color.green, 85) : na)
bgcolor(dump_condition ? color.new(color.red, 85) : na)

// === Метки ===
plotshape(pump_condition, title="🚀 PUMP Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="🚀")
plotshape(dump_condition, title="⚠️ DUMP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")

// === Алерты ===
alertcondition(pump_condition, title="🚀 NEIROCTO: Возможен памп!", message="🚀 RSI ↑, Волатильность >3%, Объёмы высокие — возможен памп!")
alertcondition(dump_condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ RSI ↓, Волатильность >3%, объёмы растут — возможен откат!")

Penafian

Maklumat dan penerbitan adalah tidak dimaksudkan untuk menjadi, dan tidak membentuk, nasihat untuk kewangan, pelaburan, perdagangan dan jenis-jenis lain atau cadangan yang dibekalkan atau disahkan oleh TradingView. Baca dengan lebih lanjut di Terma Penggunaan.