OPEN-SOURCE SCRIPT

AI-Powered Buy/Sell Tool

//version=5
indicator("AI-Powered Buy/Sell Tool", overlay=true)

// RSI Setup
rsiLength = 14
rsi = ta.rsi(close, rsiLength)

// MACD Setup
[macdLine, signalLine, _] = ta.macd(close, 12, 26, 9)

// Moving Averages Setup
emaShort = ta.ema(close, 20) // 20-period EMA
smaLong = ta.sma(close, 50) // 50-period SMA

// Sentiment-based volume proxy (volume spikes compared to moving average)
volChange = volume > ta.sma(volume, 50) ? 1 : 0 // If volume is above the 50-period average

// Buy/Sell Signals Logic
buySignal = ta.crossover(macdLine, signalLine) and rsi < 30 and close > emaShort and volChange == 1
sellSignal = ta.crossunder(macdLine, signalLine) and rsi > 70 and close < emaShort and volChange == 1

// Plot Buy/Sell Signals
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")

// Plot EMA and SMA for trend visualization
plot(emaShort, color=color.blue, linewidth=2, title="EMA 20")
plot(smaLong, color=color.orange, linewidth=2, title="SMA 50")
Candlestick analysisChart patterns

開源腳本

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

想在圖表上使用此腳本?

免責聲明