Questions from Beginners MQL5 MT5 MetaTrader 5 - page 475

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 please, such a rate tester in real life? And is it good or bad result for the year with depo 3000$?
A strategy tester always lies, even though the simulation quality is 99.9%!
The only option to check the EA is to put it on a real-time VPN server on a demo account... Microsoft Azure gives almost a free server for a month, you need $1 to look it up on YouTube!...There are other VPN services, but they have 10 days maximum of free use.
Guys! Is it possible to programmatically prohibit manual trading in an EA?
Can you please tell me why this block removes all pending stop orders on any symbols set in the terminal, ignoring magic and _Symbol?
Can you please tell me why this block removes all pending stop orders on any symbols set in the terminal, ignoring magic and _Symbol?
1. the order has to be selected first;
2. The loop should be built from the last order, i.e. for( i = orders-1; i >= 0; i-- )
Can you tell me why this unit deletes all pending stop orders on any symbols set in the terminal, ignoring magic and _Symbol?
I need to select the orders:
Guys! Is it possible to programmatically prohibit manual trading in an EA?
You have to choose your orders:
Is this the right thing to do?
Alexey Kozitsyn andKarputov Vladimir thanks for the tips!
You have written above: when orders are deleted, the cycle must be reversed. When an order is deleted, the indexes of the remaining orders are shifted.