Hello Vladimir. I have in your EA, for some reason it says that the step value in RSI Sell Level is incorrect.
and the bar is red. I wanted to test to sell.
Could you please tell me how to fix it?
Thank you.
Hello Vladimir. In your Expert Advisor, for some reason it says that the step value in RSI Sell Level is incorrect.
and the bar is red. I wanted to test to sell.
Please tell me how to fix it.
Thank you.
Your start is bigger than your stop. Do the opposite.
Thanks, that helped.
Hello. Nothing's working.
Hello. Nothing's working
What's more specific? Where does it not work: in the terminal or in the tester? What settings of the Expert Advisor? What trading account parameters (amount, leverage, hedge or netting)? On which symbol do you run it? Where is the log?
Hello, I think the EA is great!
Responsible code for the opening position:
//--- open position if (TimeControl()) { if (OpenBUY && count_buys< 1 && rsi_0>RsiBuyLevel && rsi_1<RsiBuyLevel) OpenPosition( POSITION_TYPE_BUY ); if (OpenSELL && count_sells< 1 && rsi_0<RsiSellLevel && rsi_1>RsiSellLevel) OpenPosition( POSITION_TYPE_SELL ); }
Limiter: count_buys and count_sells.
Code responsible for the opening position:
Limiter: count_buys and count_sells.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use


RSI EA v2:
RSI EA - trading based on overbought/oversold zones determined by the iRSI (Relative Strength Index, RSI) indicator.
Author: Vladimir Karputov