Ticket Array count

 
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?
int array_tickets[1000];
 
Franzel Botha:
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"

 
Franzel Botha: Is the count of [1000] the amount of tickets handled and kept track of by the array?
Yes
Franzel Botha: And If I increase or decrease the number it will affect the amount of tickets the array can handle at once?
You already know the answer.
 
Comments that do not relate to this topic, have been moved to "Off Topic Posts".
 
Paul Anscombe:

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.

 
William Roeder:
Yes You already know the answer.

Thank you.
Just made my life so much easier. lol

 
William Roeder:
Yes You already know the answer.

Now the dumbest question of all.
How do I create it to be unlimited as it has a fixed number? Can I just remove the 1000 or must it be replaced with something else?

int array_tickets[1000];
 

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.

 
William Roeder:

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

Reason: