ENJOY MY 1 BEST TRADING SETUP. how to use When u get buy or sell Signal 1check if there any Pdh/L Day H/L any S/R if yes than wait for candle close above or below that
when u get exit close trade and EXIT MEANS EXIT wait for next trade of u trade in nifty also watch to Reliance hdfc/B infy tcs icici itc and Advance /decline
Open trading view pine editor Copy below content and Paste (take google help ) save add to chart
// Β©οΈ RS
//@version=4
strategy("Strategy by itrade(DJ), Coded by RS", overlay=true)
mult = input(type=input.float, defval=3)
len = input(type=input.integer, defval=10)
[superTrend, dir] = supertrend(mult, len)
//@version=4
strategy("Strategy by itrade(DJ), Coded by RS", overlay=true)
mult = input(type=input.float, defval=3)
len = input(type=input.integer, defval=10)
[superTrend, dir] = supertrend(mult, len)
// TRADE CONDITIONS
Long = close > ema(close,10) and ema(close,20) and rsi(close,14) > 60 and close > vwap and dir == -1 and volume > sma(volume,20)
Short = close < ema(close,10) and ema(close,20) and rsi(close,14) < 40 and close < vwap and dir == 1 and volume > sma(volume,20)
Long = close > ema(close,10) and ema(close,20) and rsi(close,14) > 60 and close > vwap and dir == -1 and volume > sma(volume,20)
Short = close < ema(close,10) and ema(close,20) and rsi(close,14) < 40 and close < vwap and dir == 1 and volume > sma(volume,20)
closeLong = close < vwap
closeShort = close > vwap
strategy.entry("Buy", true ,1, when=Long)
strategy.entry("Sell",false,1, when=Short)
strategy.close("Buy", when=closeLong)
strategy.close("Sell",when=closeShort)
closeShort = close > vwap
strategy.entry("Buy", true ,1, when=Long)
strategy.entry("Sell",false,1, when=Short)
strategy.close("Buy", when=closeLong)
strategy.close("Sell",when=closeShort)
Loading suggestions...