[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 353
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
Just yourself. It is the author's privilege to write something and then tastefully fish out the fleas.
In these cases, I remix the finished constructs in blocks and see if the error disappears. Programmers use third party editors with bracket checking. Someone will give me the link now, I can't remember.
Catching fleas is exciting. While you're catching one, you're reworking the logic. I've caught a lot in my block, but this flea's been bugging me for three weeks now. I remember with melancholy when I had to write for 1-C accounting. There's a debugger - run a non-working program and one line at a time browsing the contents of any copied - the dream!
And remirating blocks gives a lot of undefined variables
Catching fleas is exciting. As long as you catch one, you're still reworking your logic. I have caught many in my unit, but this flea is now in its third week. I remember with melancholy when I had to write for 1-C accounting. There's a debugger - run a non-working program and one line at a time browsing the contents of any copied - the dream!
And remirating blocks gives a lot of undefined variables
Upload it. Either here or in person. >> I'll look for bugs.
https://www.mql5.com/ru/forum/120538
there are two solutions...
- make backups and then compare (you should ALWAYS do them. That's the first thing to learn).
- Second, see the link to editors which can catch bracket pairing. ( notepad, I think... )
zy... if neither, comment the blocks until the error disappears. then successively include the commented blocks.
... "divide and conquer"...
Who does - I always add "if() {}" to all brackets when creating something with brackets, and then write inside what I have planned.
I don't remember such mistakes :)
When compiling what I've written, there is an ETERNAL ! error '\end_of_program' - unbalanced left parenthesis.
Checked AND REPEATED all the brackets, but found nothing.
I get this error very rarely. Because I try to put paired brackets, e.g. curly brackets, right away before inserting anything into them. And I often run compilation, so that if anything, an error message appears.
And then if the listing is formatted indented, the pairing of braces can be found by placing the cursor to the beginning of the line at the end of which is an opening and moving down (clicking on the down arrow) to close it. If you find that the closing bracket is to the left of the cursor, there is clearly something missing.
Hello.
Please tell me how to copy double buf[] to double bufer [0] []
Array Copy provides for copying one dimensional arrays
I have tried it this way.
didn't work.Thanks in advance.
Hello.
Please tell me how to copy double buf[] to double bufer [0] []
Array Copy provides for copying one dimensional arrays
I have tried it this way.
it didn't work.Thanks in advance.
after the for loop you should put initial value for the pos
After the for loop you have to put the initial value for the pos
Thanks, are there no other methods other than element-by-element assignments?
Why does the alert give 0 !?
Thanks, are there no other methods other than element-by-element assignments?
Why does the alert give 0 !
Because you have to resize the array, otherwise you won't get anything written to it.
change is poisoning my life
because you have to resize the array, otherwise you won't be able to write anything to it.
So why resize if you don't specify the number of buffer cells, it's max!?