OPEN-SOURCE SCRIPT

SMA Crossover Bot for Bybit

//version=5
indicator("SMA Crossover Bot for Bybit", overlay=true)

// Ввод параметров
sma5_length = input(5, "Длина SMA5")
sma20_length = input(20, "Длина SMA20")

// Вычисление скользящих средних
sma5 = ta.sma(close, sma5_length)
sma20 = ta.sma(close, sma20_length)

// Сигналы пересечения
buy_signal = ta.crossover(sma5, sma20) // SMA5 пересекает SMA20 снизу вверх
sell_signal = ta.crossunder(sma5, sma20) // SMA5 пересекает SMA20 сверху вниз

// Отправка сигнала через Webhook
if (buy_signal)
alert("BUY_SIGNAL", alert.freq_once_per_bar_close)
if (sell_signal)
alert("SELL_SIGNAL", alert.freq_once_per_bar_close)

// Отображение на графике
plot(sma5, color=color.green, title="SMA5")
plot(sma20, color=color.red, title="SMA20")

plotshape(buy_signal, style=shape.labelup, location=location.belowbar, color=color.green, text="BUY")
plotshape(sell_signal, style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL")
forecasting

開源腳本

在真正的TradingView精神中,這個腳本的作者以開源的方式發佈,這樣交易員可以理解和驗證它。請向作者致敬!您可以免費使用它,但在出版物中再次使用這段程式碼將受到網站規則的約束。 您可以收藏它以在圖表上使用。

想在圖表上使用此腳本?

免責聲明