
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
Hello,
I found in mql4 and mql5 documentation both https://docs.mql4.com/basis/operations/other and https://www.mql5.com/en/docs/basis/operations/other, they call it Comma Operation something like this for(i=0,j=99; i<100; i++,j--) Print(array[i][j]);
I tried to add control for j loop like this for(i=0,j=99; i<100, j<5; i++,j--) Print(array[i][j]); but it did not work.
I thought this is a structure that can be used to combined two separate for loop.
Anybody has an experience with this for loop structure and what is the work around?
Thank you for helping out.