G Force

Wait 5 sec.

G ForceGoldOANDA:XAUUSDgosiamengobeni6//@version=5 indicator("Gosiame NAS Sniper", overlay=true) ema200 = ta.ema(close,200) ema50 = ta.ema(close,50) rsi = ta.rsi(close,7) bullEng = close > open and close < open bearEng = close < open and close > open buy = close > ema200 and close > ema50 and rsi > 40 and rsi < 60 and bullEng sell = close < ema200 and close < ema50 and rsi > 40 and rsi < 55 and bearEng plotshape(buy, style=shape.labelup, color=color.green, text="BUY") plotshape(sell, style=shape.labeldown, color=color.red, text="SELL") alertcondition(buy, "BUY") alertcondition(sell, "SELL")