Disliked{quote} edition of Trend RSI indicator *add MA9-45 indy {image} {file} {file} {file} {file} {file} {file} {image} {image} {image}Ignored
Attached File(s)
1
10 pips a day can make you rich quickly 244 replies
Simple RSI & EMA high Profitable ratio Strategy 98 replies
How much do you want to make and why do you want to make it 17 replies
A Proven Simple Strategy (2MAs, 1 RSI) 436 replies
Simple RSI Strategy & EA 1 reply
Disliked{quote} edition of Trend RSI indicator *add MA9-45 indy {image} {file} {file} {file} {file} {file} {file} {image} {image} {image}Ignored
Disliked{quote} Thank you for your kind feed back and the % change indicator May I know what are the base values used for calculating the % changes?Ignored
//@version=5
strategy("Slim001 - Twin RSI", overlay = false)
// ********************** Calculation values
// Calculate RSI values
slowRSI = ta.rsi(close, 14)
fastRSI = ta.rsi(close, 2)
// ********************** Entry Conditions buy
// Entry long
longEnter = fastRSI<15 and fastRSI[1]>15 and slowRSI<56 and slowRSI>44 and open[1]>close[1]
//Exit long
longSL = slowRSI<44 or fastRSI<15
longTP = fastRSI>85
longExit = longTP or longSL
// Strategy logic buy
if (longEnter)
strategy.entry("Buy", strategy.long)
if (strategy.position_size > 0 and longExit)
strategy.close("Buy", "Exit Buy") //@version=5
strategy("Slim001 - Twin RSI", overlay = false)
// ********************** Calculation values
// Calculate RSI values
rsi14 = ta.rsi(close, 14)
rsi2 = ta.rsi(close, 2)
// ********************** Entry Conditions long
// Entry long
longEnter = rsi14>60 and ta.cross(rsi2,rsi14) and rsi2<60
//Exit long
longSL =ta.cross(rsi14,rsi2)
longTP =rsi14<60
longExit = longTP or longSL
// ********************** Entry Conditions short
// Entry short
shortEnter = rsi14<40 and ta.cross(rsi14,rsi2) and rsi2>40
//Exit long
shortSL =ta.cross(rsi2,rsi14)
shortTP =rsi14>40
shortExit = shortTP or shortSL
// Strategy logic long
if (longEnter)
strategy.entry("Buy", strategy.long)
if (strategy.position_size > 0 and longExit)
strategy.close("Buy", "Exit Buy")
// Strategy logic short
if (shortEnter)
strategy.entry("Sell", strategy.short)
if (strategy.position_size < 0 and shortExit)
strategy.close("Sell", "Exit Sell")
plot(rsi14, "RSI14",color.red)
plot(rsi2,"RSI2",color.green)
plotshape(series=longEnter, location=location.belowbar, color=color.green, style=shape.triangleup, title="Long Entry")
hline(40, "Overbought", color=color.red)
hline(60, "Oversold", color=color.green) Disliked//@version=5 strategy("Slim001 - Twin RSI", overlay = false) // ********************** Calculation values // Calculate RSI values rsi14 = ta.rsi(close, 14) rsi2 = ta.rsi(close, 2) // ********************** Entry Conditions long // Entry long longEnter = rsi14>60 and ta.cross(rsi2,rsi14) and rsi2<60 //Exit long longSL =ta.cross(rsi14,rsi2) longTP =rsi14<60 longExit = longTP or longSL // ********************** Entry Conditions short // Entry short shortEnter = rsi14<40 and ta.cross(rsi14,rsi2) and rsi2>40 //Exit long shortSL =ta.cross(rsi2,rsi14)...Ignored
Disliked//@version=5 strategy("Slim001 - Twin RSI", overlay = false) // ********************** Calculation values // Calculate RSI values rsi14 = ta.rsi(close, 14) rsi2 = ta.rsi(close, 2) // ********************** Entry Conditions long // Entry long longEnter = rsi14>60 and ta.cross(rsi2,rsi14) and rsi2<60 //Exit long longSL =ta.cross(rsi14,rsi2) longTP =rsi14<60 longExit = longTP or longSL // ********************** Entry Conditions short // Entry short shortEnter = rsi14<40 and ta.cross(rsi14,rsi2) and rsi2>40 //Exit long shortSL =ta.cross(rsi2,rsi14)...Ignored