// Check for RSI golden cross and volume break MA 20 rsi_golden_cross = ta.crossover(weekly_rsi, 50) volume_break_ma = weekly_volume > weekly_ma_volume
// Plotting signals plotshape(series=rsi_golden_cross and volume_break_ma, location=location.belowbar, color=color.green, style=shape.labelup, text="RSI GC + Vol Break MA 20")
// Plotting RSI and volume for reference plot(weekly_rsi, title="Weekly RSI", color=color.blue) plot(weekly_ma_volume, title="Weekly MA Volume", color=color.red)
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.