RSI free ea

 

Does anybody know where to download the EA which using RSI strategy? Or how to convert a strategy to EA.

For more informations of the EA, the strategy like below I mention will be better:

//@version=4

strategy("RSI Strategy", overlay=true)

length = input( 5 )

overSold = input( 25 )

overBought = input( 75 )

price = close

vrsi = rsi(price, length)

co = crossover(vrsi, overSold)

cu = crossunder(vrsi, overBought)

if (not na(vrsi))

    if (co)

strategy.entry("RsiLE", strategy.long, comment="RsiLE")

if (cu)

strategy.entry("RsiSE", strategy.short, comment="RsiSE")

//plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr)

 
songchiu0915 :


Use the search word 'RSI' - search through CodeBase.

An example of how to conduct a search:

 
Vladimir Karputov:

Use the search word 'RSI' - search through CodeBase.

An example of how to conduct a search:



Wow, alright, thank you very much~