Change RSI Values on Strategy Tester (70-30)

 

Hello! Im trying to change the values of the RSI Oversold and Overbought levels on the Strategy Tester, but I don't see any options. The standard values are 70-30 so the indicator shows those. Is there any way to change it? 

Heres the EA Code part where I calculate the RSI. (OnInit) I have the other values for my RSI on the inputs (60 and 40 for the first RSI) and (25 and 75 for the second RSI). 

IMPORTANT: The strategy is working fine when executing the trades, its using the levels that I need (60-40) and (25-75), but the indicator is showing (70-30) visually.

int OnInit(){
   SMA_Handle = iMA(_Symbol, PERIOD_CURRENT, Periodo_SMA_RSI_Tendencial, 0, MODE_SMA, PRICE_CLOSE);
   RSI_Tendencial_Handle = iRSI(_Symbol, PERIOD_CURRENT, Periodo_RSI_Tendencial, PRICE_CLOSE);
   RSI_Connors_Handle = iRSI(_Symbol, PERIOD_CURRENT, Periodo_RSI_Connors, PRICE_CLOSE);
   ATR_Handle = iATR(_Symbol,PERIOD_CURRENT,Periodo_ATR);
   velas_totales = iBars(_Symbol,PERIOD_CURRENT);


Attached image shows the 2 RSI's with the 70-30 levels.

Files:
Test.jpg  297 kb