
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
hi , I need help to fix this code , every time I get this Error : Array Out of range
This Code is to print : Pairs RSI value
eg. EURUSD 33.5
------------------------------------------------------------------------------
int X_Shift,Y_Shift;
X_Shift=200;
Y_Shift=10+Y_Move;
int sizeRSI=ArraySize(Symbols);
for(int i=0; i < sizeRSI; i++)
{
RSIs[i]=iRSI(Symbols[i],240,24,0,0); //(The EA stop here)
CreatePanel("RSI",OBJ_EDIT,DoubleToString(RSIs[i]), X_Shift, Y_Shift,60,25,Blue,White,Black,9,true,false,0,ALIGN_CENTER);
Y_Shift+=40;
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
Thanks