OPEN-SOURCE SCRIPT

Helper Indicator for Crypto Scalping Pro

//version=5
indicator("Helper Indicator for Crypto Scalping Pro", overlay=true)

// === НАСТРОЙКИ ===
showTrendLines = input.bool(true, "Показывать линии тренда")
showSupportResistance = input.bool(true, "Показывать уровни поддержки и сопротивления")
showAdditionalSignals = input.bool(true, "Показывать дополнительные сигналы")

// === БАЗОВЫЕ ИНДИКАТОРЫ ===
fastEMA = ta.ema(close, 8)
mediumEMA = ta.ema(close, 13)
slowEMA = ta.ema(close, 21)

// Определение тренда
isBullishTrend = fastEMA > mediumEMA and mediumEMA > slowEMA
isBearishTrend = fastEMA < mediumEMA and mediumEMA < slowEMA

// Поддержка и сопротивление
highestHigh = ta.highest(high, 20)
lowestLow = ta.lowest(low, 20)

// Линии тренда
plot(fastEMA, "Fast EMA (8)", color=color.blue, linewidth=1)
plot(mediumEMA, "Medium EMA (13)", color=color.orange, linewidth=1)
plot(slowEMA, "Slow EMA (21)", color=color.red, linewidth=1)

// Уровни поддержки и сопротивления
plot(showSupportResistance ? highestHigh : na, "Resistance", color=color.red, style=plot.style_line, linewidth=2)
plot(showSupportResistance ? lowestLow : na, "Support", color=color.green, style=plot.style_line, linewidth=2)

// Сигналы
buySignal = isBullishTrend and close > mediumEMA
sellSignal = isBearishTrend and close < mediumEMA

// Визуализация сигналов
plotshape(showAdditionalSignals and buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(showAdditionalSignals and sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)

// === АЛЕРТЫ ===
alertcondition(buySignal, title="Buy Signal", message="Тренд восходящий! Вход в покупку!")
alertcondition(sellSignal, title="Sell Signal", message="Тренд нисходящий! Вход в продажу!")
Bands and ChannelsBreadth Indicatorsforecasting

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