Hi, I am new to developing and coding on MQL4.
I got a question and for some it might be stupid. But I am learning and trying to figure it all out for myself.
(Take note that I am editing an EA I purchased from another developer)
Is the count of [1000] the amount of tickets handled and kept track of by the array?
And If I increase or decrease the number it will affect the amount of tickets the array can handle at once?
without the rest of the code there is no context of use....
all that can be said is that
int array_tickets[1000];
will create an integer array of size 1000 and it will be called "array_tickets"
without the rest of the code there is no context of use....
all that can be said is that
will create an integer array of size 1000 and it will be called "array_tickets"
Sorry I didn't add the rest.
It was just this section that I was interested in knowing.
Yes You already know the answer.
Thank you.
Just made my life so much easier. lol
Perhaps you should read the manual. ArrayResize
How To Ask Questions The Smart Way. 2004
How To Interpret Answers.
RTFM and STFW: How To Tell You've Seriously Screwed Up.
Perhaps you should read the manual. ArrayResize
How To Ask Questions The Smart Way. 2004
How To Interpret Answers.
RTFM and STFW: How To Tell You've Seriously Screwed Up.
Great thnx. will look it up
Just not the follwing....
How To Ask Questions The Smart Way. 2004
How To Interpret Answers.
RTFM and STFW: How To Tell You've Seriously Screwed Up.
LOL

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
I got a question and for some it might be stupid. But I am learning and trying to figure it all out for myself.
(Take note that I am editing an EA I purchased from another developer)
Is the count of [1000] the amount of tickets handled and kept track of by the array?
And If I increase or decrease the number it will affect the amount of tickets the array can handle at once?