songchiu0915 :
Use the search word 'RSI' - search through CodeBase.
An example of how to conduct a search:
Forum on trading, automated trading systems and testing trading strategies
How can I search for indicators and other elements in this forum?
Vladimir Karputov, 2021.08.09 06:54
How can I search for indicators and other elements in this forum
Vladimir Karputov:
Use the search word 'RSI' - search through CodeBase.
An example of how to conduct a search:
Wow, alright, thank you very much~

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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)