The amount of indicators in the robot is different

 

in my robot i check 3 prev RSIcandlestick

i use this code

candel1=iRSI(Symbol(),PERIOD_CURRENT,14,PRICE_TYPICAL,1);
candel2=iRSI(Symbol(),PERIOD_CURRENT,14,PRICE_TYPICAL,2);
candel3=iRSI(Symbol(),PERIOD_CURRENT,14,PRICE_TYPICAL,3);

Comment("RSI candel 1 "+candel1+"\n"
            ,"RSI candel 2 "+candel2+"\n"
            ,"RSI candel 2 "+candel3+"\n");

now values are different between indicator and my robot

Can someone explain to me why a candlestick whose opening and closing values no longer change is different in the indicator and the robot ?
Files:
rsi.png  5 kb
candel_1.png  4 kb
candel_2.png  3 kb
candel_3.png  4 kb
 
The parameters don't match. What price did you apply the RSI to?