//version=5
indicator(“Crypto Scalping Strategy (EMA + VWAP + RSI)”, overlay=true)
// EMA Settings
emaFast = ta.ema(close, 9)
emaSlow = ta.ema(close, 21)
// VWAP
vwap = ta.vwap
// RSI
rsi = ta.rsi(close, 14)
// Plot EMAs and VWAP
plot(emaFast, title=”EMA 9″, color=color.orange)
plot(emaSlow, title=”EMA 21″, color=color.blue)
plot(vwap, title=”VWAP”, color=color.purple)
// Buy and Sell Conditions
buySignal = ta.crossover(emaFast, emaSlow) and close > vwap and rsi > 50 and rsi < 70
sellSignal = ta.crossunder(emaFast, emaSlow) and close < vwap and rsi < 50 and rsi > 30
// Plot Buy/Sell Signals
plotshape(buySignal, title=”Buy”, location=location.belowbar, color=color.green, style=shape.labelup, text=”BUY”)
plotshape(sellSignal, title=”Sell”, location=location.abovebar, color=color.red, style=shape.labeldown, text=”SELL”)