JSJTradeworx: SO I get this error, I am learning coding, nowhere can I find the CAUSE, I have looked and my parenthesis looks fine but error persists. Followed a tutorial and triple-checked my code.
'}' - unexpected end of program R2.mq4 117 1
'{' - unbalanced parentheses R2.mq4 34 15
You have several mistakes in your code but start with the following:
From this ...
STradeSum sum {To this ...
STradesum sum;
Remember that case is important — "STradeSum" is not the same as "STradesum". So either correct the structure's declaration or change the declaration of the variable of that structure.
After this you will get more errors which you will need to fix. Try to fix them yourself. That is how you learn how to code properly by understanding your own mistakes so that you don't repeat them in the future. If you let others figure it out for you, you will not learn as well.
Thanks a lot, it makes sense. Now I can work on the other errors and mistakes, this is how we learn, appreciate the headsup.
I have fixed the others that I got, I just missed the S-s not used to focusing on each sylable, comme, dot etc. Will get there though.
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
SO I get this error, I am learning coding, nowhere can I find the CAUSE, I have looked and my parenthesis looks fine but error persists. Followed a tutorial and triple-checked my code.
'}' - unexpected end of program R2.mq4 117 1
'{' - unbalanced parentheses R2.mq4 34 15