Rsi levels

 

Hi, i want to add RSI to my EA, with different Rsi levels than default. I'm adding RSI with this code: 

bool CSampleExpert::InitIndicators(void)
  {
   if(m_handle_rsi==INVALID_HANDLE)
      if((m_handle_rsi=iRSI(NULL,0,14,PRICE_OPEN))==INVALID_HANDLE)
        {
         printf("Error creating RSI indicator");
         return(false);
        }
   }

How can I change levels for this indicator? 

 
kkidyba :

Hi, i want to add RSI to my EA, with different Rsi levels than default. I'm adding RSI with this code: 

How can I change levels for this indicator? 

Use a custom indicator - an indicator that has levels in its input parameters:  RSI Levels

 
I don't know how to insert custom indicator... Is there any option to change levels in this indicator?
 
kkidyba # :
I don't know how to insert custom indicator ... Is there any option to change levels in this indicator?

No. You must use a custom indicator call. An example is in the code: Custom Moving Average Levels

Reason: