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精神,此脚本的作者已将其开源,以便交易者可以理解和验证它。向作者致敬!您可以免费使用它,但在出版物中重复使用此代码受网站规则约束。 您可以收藏它以在图表上使用。

想在图表上使用此脚本?

免责声明