Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 1538
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
I sent a request yesterday, more than a day has passed and silence.
1. Go to the nearest ATM, insert the card, enter the pin code...
2. Go to the nearest bank, make eye contact, then follow the situation...
3. Go to the market. 3) Go to the market. Go to the bank. Withdraw funds (you can withdraw them all, not just your own...) ...
4. If you have to withdraw money from MMM, then even the tank will not help you!
And seriously, you can't!
Hello. Please help me to understand... The Expert Advisor is closing other people's trades or not opening its own if there are other people's trades.
Hello. Please help me to understand... The Expert Advisor is closing other people's trades or not opening its own if there are other people's trades.
If it is written above, the Expert Advisor closes trades opened manually,
If I put it this way
If there are any trades opened manually, then the Expert Advisor will not close other trades, but it will not open its own if there are any trades opened manually.
If it is written above, the Expert Advisor closes trades opened manually,
If I put it this way
If there are any trades opened manually, then the Expert Advisor will not close other trades, but it will not open its own if there are any trades opened manually.
I also need selection on the magic number at opening
What is this? The opening is indicated. The thing is that when you use several Expert Advisors, there is no problem. The problem occurs only when there is a manual opening of a position in the account.
As soon as there are opened deals on the account manually, the Expert Advisor stops working.
As soon as I remove this in the code, total=OrdersTotal();
if(total<1)
EAs go straight on, but open lots of trades
What is this? The opening is indicated. The thing is that when you use several Expert Advisors, there is no problem. The problem occurs only when there is a manual opening of a position in the account.
As soon as there are opened deals on the account manually, the Expert Advisor stops working.
As soon as I remove this in the code, total=OrdersTotal();
if(total<1)
EAs go straight on, but open lots of trades.
This is what I am talking about - OrdersTotal() is for all orders and you need an EA order
That's what I'm talking about, OrdersTotal() is all orders and you want EA orders
This is instead of
total=OrdersTotal();
if(total<1) or do we leave this one as well?