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
No, you can't. Why should you? You rent out your power and you get immeasurably more.
Roche, thank you for your prompt reply. Why - I answer, so as not to give up my computer's power without participating in the Cloud, and at the same time not to pay for the Cloud service when optimising my EA.
OK, you cast a VPN and you get it, as I understand it. Such experiments have already been done on the forum, search for it.
OK, you cast a VPN and get what you need, as I understand it. Such experiments have already been on the forum, search for it.
Multi-core testing network for all comers
experimented with this VPN
Comodo EasyVPN http://easy-vpn.comodo.com/download.html
I'm a bit confused in the code, how do I make a profit on the last position (trade)?
I do this
datetime from_date=0;
datetime to_date=TimeCurrent();
HistorySelect(from_date,to_date);
Alert(HistoryDealGetDouble(HistoryDealGetTicket(0),DEAL_PROFIT));
it returns balance as follows
I'm a bit confused in the code, how do I make a profit on the last position (trade)?
I do this
datetime from_date=0;
datetime to_date=TimeCurrent();
HistorySelect(from_date,to_date);
Alert(HistoryDealGetDouble(HistoryDealGetTicket(0),DEAL_PROFIT));
it returns the initial balance
You have HistoryDealGetTicket(0). I.e. it's a reference to a zero trade. In my opinion, this is the balance transaction.
The entire example can be found in: MQL5 Reference / Trading Functions / HistoryDealGetTicket
Can you tell me how to change the comment on a position?
Add/Reduce Volume.
I reduce the volume by counter-order, write a comment in it, but the comment stays in it, it does not "cling" to the position...
The most interesting thing is that if the order is sent with a comment in the direction of the position, it receives this comment, if against - it does not.
Maybe this is a bug?