//version=5 indicator("Buy and Sell Signals Example", overlay=true)
// Input parameters for the moving averages and RSI rsiLength = input.int(14, title="RSI Length") rsiOverbought = input.int(70, title="RSI Overbought Level") rsiOversold = input.int(30, title="RSI Oversold Level") shortMaLength = input.int(50, title="Short MA Length") longMaLength = input.int(200, title="Long MA Length")
// Calculate the RSI and moving averages rsi = ta.rsi(close, rsiLength) shortMa = ta.sma(close, shortMaLength) longMa = ta.sma(close, longMaLength)
// Define Buy and Sell conditions buyCondition = rsi < rsiOversold and shortMa > longMa // RSI is oversold and short MA is above long MA sellCondition = rsi > rsiOverbought and shortMa < longMa // RSI is overbought and short MA is below long MA
// Plot Buy and Sell signals on the chart plotshape(series=buyCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY") plotshape(series=sellCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")
진정한 TradingView 정신에 따라, 이 스크립트의 저자는 트레이더들이 이해하고 검증할 수 있도록 오픈 소스로 공개했습니다. 저자에게 박수를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 출판물에서 이 코드를 재사용하는 것은 하우스 룰에 의해 관리됩니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.