
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
Thank you both for the replies, that makes sense.
Is it possible to call an element in an array based on matching the value within it - so kind of like a VLOOKUP in Excel (its the best analogy I could think of).
In the above example, how would it be possible to return the OrderOpenTime for a particular ticket? Is it this? Or is there another better/easier way?
You have to think about what you are trying to do.
You are not using i in the loop at all.
You are accessing the same array element every pass of the loop.
Doesn't make any sense!
Ofcourse thanks for correcting!
But this is the best way of looking up the ticket - using a loop, as opposed to another (easier) way?
Thanks a lot for all your help!
Hi there,
Does anyone know how to declare a global Array
Such that the 3rd column TicketHighLow[2] all have an initial value 1000
and the 4th column TicketHighLow[3] all have an initial value 0?
Can't be done. Declare it and then initialize it.
Can't be done. Declare it and then initialize it.
Thanks a lot for this. Is there an distict advantage of using struct over a two dimensional array?
I ran into this when I incorporate:
'for' - expressions are not allowed on a global scope trailing stop.mq4 73 1
I wanted to initialize the array with
so that this part of the code would work:
Which is why I used an arbitary high value of 1000
If I don't declare the array as a global variable, it resets the highs and lows on every tick for every open order.
This is the code how it stands - I
Would using struct solve this problem?
Different data types possible. No need to cast to real datatype on retrieval, everywhere.
If you don't understand that initialization code goes in functions (like OnInit), step away from the code and hire some.
Would using struct solve this problem?
Perhaps you should read the manual.
How To Ask Questions The Smart Way. 2004
How To Interpret Answers.
RTFM and STFW: How To Tell You've Seriously Screwed Up.