Questions from Beginners MQL5 MT5 MetaTrader 5 - page 846
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
Can you tell me if this is profiling?
Which is consuming so much, the type conversion, or the return itself?
Using string concatenation
8 microseconds * 176 million hits
Since all string values are known and based on input constants, then
Create an array (global) string, fill it with future values in OnInit()
And in the function, call the ready values without counting them 175 million times.
You can do without a function, and simply read the index from the array, but if you can not control the type (the future array index), then in the function do the following
Can you tell me if the value of the ticks can be compared to zero in this way. The ticks are standard, not custom.
Or is there a possibility that the standard tick quotes will be some 0.000000000000000000001 ?
Can you tell me if the value of the ticks can be compared to zero in this way. The ticks are standard, not custom.
Or is there a probability that the standard tick quotes will be some 0.000000000000000000001 ?
There is no such probability, i.e. the ticks are cut through the Digits-mechanism. I.e., you won't even be able to write such a price into custom symbols. Well, you can write
if(!Tick[i].bid)
There is no such probability, i.e. the ticks are cut through the Digits-mechanism. I.e. you cannot even manage to write such a price into a custom character. And you can write
I know about the custom symbols. I'm not so sure about the regular ones. Do you know it or do you think so?
I know about the custom characters. I'm not so sure about the regular ones. Do you know it or do you think so?
The mechanism is the same. Digits will not even let the Terminal itself record this quote in history.
Only the opening price of the position on the net account can be curved. But that doesn't apply to ticks.
Can you tell me, after the test in multicurrency mode in the tester we only see the result of ..., however, we don't see anything but the overall result.
Somewhere I met either in an article or in kodobase code, which shows the results for each symbol separately. Who knows what about it?
Hello.
Is it possible to connect simultaneously from several PCs to the same MT5 terminal, do partitioning and see the partitioning of other users simultaneously online?
If yes, can you tell me how to do it?
Hello.
Is it possible to connect simultaneously from several PCs to the same MT5 terminal, do partitioning and see the partitioning of other users simultaneously online?
If yes, can you tell me how to do it?
It may be necessary for the terminals with graphics to send the markup to a web server and for others to receive it and display it on a chart. This is not a simple task, but it is feasible