Experts: RSI EA v2

 

RSI EA v2:

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

RSI EA v2

Author: Vladimir Karputov

 
Automated-Trading:

RSI EA v2:

Author: Vladimir Karputov

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.

 
Shara1:

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.

You have a higher start than stop. Do the opposite.
 
Aliaksandr Hryshyn:
Your start is bigger than your stop. Do the opposite.

Thanks, that helped.

 

Hello. Nothing's working.

 
voyaka77:

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?

 
Automated-Trading:

RSI EA v2:

Author: Vladimir Karputov

Hello, I think the EA is great!
I just have a question, is it possible to edit the code so that it opens more than one position at a time? Kind regards.
 
Kay7667 :
Hello, I think the EA is great!
I just have one question, is it possible to edit the code so that it opens more than one position at the same time? Yours sincerely.

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.

 
Vladimir Karputov:

Code responsible for the opening position:

Limiter: count_buys and count_sells.

Thank you very much, a really nice EA.
 

I have installed the Rsi EA in Metatrader and it does not work.

Why is that?

LG

 
pedro2612:

I have installed the Rsi EA in Metatrader, it does not work.

Why is that?

LG

What exactly is your problem?

I have just downloaded and tested ..... works.



Greetings