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
The upper left, on the other hand, is only in doubt...
Green inputs and red outputs. :)
The blue ones are profit, the red ones are loss. But the top left is only in doubt....
A question about the speed of copying values of array elements. Suppose there are two identical-sized arrays.
Which will work faster,
or
ArrayCopy(a1,a2);
?
A question about the speed of copying values of array elements. Suppose there are two identical-sized arrays.
Which will work faster,
or
?
Can't you figure it out with GetTickCount()? (I haven't tried it myself yet).
Second question. Is it possible to use the array assigned to the indicator buffer by the SetIndexBuffer() function as a recipient array for the ArrayCopy() function? The sizes of the recipient array and the source array coincide, i.e. the size of the recipient array should not be changed.
Good afternoon.
Sometimes in the price timeseries there are strange values, for example (three digits accuracy), 1.221999. In MQL, I use NormalizeDouble() to compare the price, but now I want to write a code fragment in DLL. For this purpose I need to understand what these strange values mean and to understand how NormalizeDouble() works. I think it's not the best solution too, since it itself is sometimes inadequate. Question body: what do the prices correspond to (three digits accuracy)?
void Question()
{
1.1231 - .....
1.1235 - .....
1.1239 - .....
} :)
Good afternoon.
Sometimes in the price timeseries there are strange values, for example (three digits accuracy), 1.221999. In MQL, I use NormalizeDouble() to compare the price, but now I want to write a code fragment in DLL. For this purpose I need to understand what these strange values mean and to understand how NormalizeDouble() works. I think it's not the best solution too, since it itself is sometimes inadequate. Question body: what do the prices correspond to (three digits accuracy)?
void Question()
{
1.1231 - .....
1.1235 - .....
1.1239 - .....
} :)
void Reply()
{
1.1231 - 1.123
1.1235 - 1.124
1.1239 - 1.124
} :)
ZS round up the five to the higher, round up the four to the lower.
Hello. I have read the MT5 help, but I still do not understand, is it possible to do the following: I have a computer at work, which is connected to the internet, install MetaTester on it and use the power of this computer at home to optimize EAs, but no one but me uses this power?