[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 962
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
Help "revive" the indicator. According to the historical data it works, but not according to the new ones. I am not sure what to do with it.
I would rather you put the idea in words.
And it's not good to spam. It is enough to ask the question in one place and not many
The problem is not in the processor but in the EA code, there are bottlenecks somewhere, but you cannot diagnose and fix them by word of mouth, you need the code
Here is a piece of code responsible for each tick.
Sorry for the two posts - can't fit in one.
Maybe you can see that the tester's scoring speed is slowing down?
Sorry for the two posts - can't fit in one.
Maybe you can see that the tester's scoring speed is slowing down?
Sorry for two messages - it won't fit into one.
Maybe you can see that it slows down the counting speed in the tester ?
The graphics are definitely slowing down.
And do not forget that in mql4 there is a full calculation of conditions in if(), i.e. if you have several && then all values will be calculated and compared, although one false is enough to make construction with && be false
it is possible to split it into several if()
in this case, after the first if() is not taken into account, the whole construct below will not be considered
in fact this code only performs 2 order modifications, everything else is obviously superfluous...
Nikolai, thank you. I've removed all the alerts and error handling. There is no visible increase in speed. Yes, orders are modified here and order number and place of opening conditions are shown graphically. I have left the text functions as they mark on the chart which order has been opened (we need it for further analysis).
you have to find another way to analyse, graphical functions are very slow
You could pull all the graphics into a separate function and call it with a condition. Although I thought that graphical functions and alerts don't work when optimising, and don't reduce the testing speed.