[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 967

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
You need a "New Order" function like "New Bar". The function should have TRUE value only for one tick after the moment when the order was opened. I.e., at the moment when the number of open orders has changed to the higher side. Please help us to
This is how you can track the dealer's changes in StopLevel on each new tick. Use the same principle to track your orders.
there is such a problem - i had this problem too, if the Expert Advisor makes many trades per year - perhaps too much data is stored for the output of the final result or maybe the indicator buffers eat the memory
i have seen - i don't know, bear with me - for a general picture, the test is for 10 years, and it's better to optimize for one year and then make a selection of the best parameters
And about memory. Is 4GB of memory not enough? Especially when testing the strategy - I looked - it is used only 50-60%.
And about memory. Is 4 GB of memory not enough? Moreover, when testing the strategy - I looked - it is used only 50-60%.
well, we do not know how much MT4 can use, and 4Gb cannot be addressed in Win32, you need Win64, and to Win64 you need 64-bit applications, MT5 has a 64-bit terminal, MT4 is not even aware of it
SZZ: don't over optimise - you will get extra confidence in your code. and it's not certain that the market will want to adjust to your optimum parameters ;)
This is how you can track the dealer's changes in StopLevel on each new tick. Use the same principle to track your orders.
Thanks for the tip! Indeed the lines:
form the "front", i.e. the change of the current state in relation to the previous one. The old_order parameter is needed. Thanks
Thanks for the tip! Indeed the lines:
form the "front", i.e. the change of the current state in relation to the previous one. The old_order parameter is needed. Thanks
I understand the code shown earlier is part of it, maybe there are slow spots in the other part too
well, we do not know how much MT4 can use, and 4Gb cannot be addressed in Win32, you need Win64, and Win64 need 64-bit applications, MT5 has a 64-bit terminal, MT4 is not even aware of it
ZS: don't overdo it with optimization - you'll get extra confidence in your code. and it's not certain that the market will want to adjust to your optimal parameters ;)
Please advise:
we have transferred the data of the monthly TF to the daily TF
How do we compare data of the month chart? I suppose we should take Month_P [i] and Month_P [i+N], where N is the number of bars in the daily timeframe that will surely bring us to the previous monthly bar. And how exactly to determine this number N?