Errors, bugs, questions - page 1647
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
Please explain the following behaviour:
Is it stable and at all times or on the first tick of the running indicator?
The _LastError value is missing in the wotch window
Are you sure?
and at the same timeHow do you figure that? If the first is equal, the second will be equal.Compilation error
Compilation error
In your example the error is justified, in my case it is different
I didn't read the code carefully and automatically thought that you have a conditional if statement, but you just have a function called f.
You should pass a variable or some pre-calculated value to the function, not an expression.
You have to pass a variable or some pre-calculated value into the function, not an expression.
What is the difference?
What is the difference?
In the first case, a variable is passed, in the second, the result of the operation. And who knows what's contrived there for inta
In fact, this reference error has been annoying for a very long time, and it shouldn't be there at all.
What's the difference?
There are some suggestions about ArrayResize function. We need to add possibility to setreserve_size parameterto -1, which would mean using previous set value. Then we wouldn't have to store or carry this value around. It would be enough to firstly resize it with required reserve, and then not to worry about it anymore .Otherwise, it's a constant inconvenience, when you pass an array to some function, which resizes it, but knows nothing about preset reserve on it, and as a result runs it down, leading to unnecessary memory reallocations later. After all, I suppose, this value is stored somewhere for an array. Or is it not?