OPEN-SOURCE SCRIPT

Candle Prediction

//version=5
indicator("Candle Prediction", overlay=true)

// تنظیمات اندیکاتورها
lengthRSI = input(14, title="RSI Length")
lengthEMA = input(9, title="EMA Length")

// محاسبه اندیکاتورها
rsi = ta.rsi(close, lengthRSI)
ema = ta.ema(close, lengthEMA)

// شرایط پیش‌بینی کندل بعدی
bullishSignal = close > ema and rsi < 30
bearishSignal = close < ema and rsi > 70

// رسم سیگنال‌ها روی چارت
plotshape(bullishSignal, style=shape.labelup, location=location.belowbar, color=color.green, size=size.small, title="Bullish Signal", text="Bullish")
plotshape(bearishSignal, style=shape.labeldown, location=location.abovebar, color=color.red, size=size.small, title="Bearish Signal", text="Bearish")
Candlestick analysis

開源腳本

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

想在圖表上使用此腳本?

免責聲明