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
In general, the broker could download the source text file, and then decompiling it would not be necessary. But I think that brokers don't have such possibility, because if they knew about it then... you know. In general, the broker first of all is interested in matching the rate to a stop loss. He does not even need the Expert Advisor's code. Who has dealt with this?
If you don't trust your broker, why do you work with him?
If you do not want to change the broker, do not expose real stops, and work through the virtual ones.
Both MT4 and MT5 allow you to implement them.
If you can't do it yourself, go to the Jobs section.
To ensure that the stops are always active, put a ready-made Expert Advisor monitoring the stops on the VPS. The platform allows you to manage one account from two computers simultaneously.
It looks complicated, but you have a problem with your broker, you solve it. The real options I gave you.
You can't do it yourself, go to the Jobs section.
No files (Expert Advisors, sources, logs, etc.) from the terminal (the user's computer) are transferred to the broker's servers in any way.
The only exception is the short crash logs of the terminal, which do not contain any personal information. The crash logs are transmitted directly to the service desk of our company through brokers' servers. It is the work with crashes that allows us to fix most of the errors and increases the quality and stability of our products.
So, the point is that the indicator is written correctly - almost like this one - the difference is that more currencies have been added and that's it
//--- расчёт индикатора
for(i=limit-1;i>=0;i--)
{
rashit1Buffer[i]=mrate[i].close;
}
You work with close prices, but the close price on the zero bar is dynamic from the bar's opening to its closing, while it is static on the history.
You have to dig in this direction. For example, try working with open, the problems will disappear, although the lag will increase.
If you don't trust your broker, why do you work with him?
If you don't want to change your broker, you may just not set real stops and work through virtual ones.
Both MT4 and MT5 allow you to implement them.
If you can not do it yourself, go to the section Jobs.
To ensure that the stops are always active, put a ready-made Expert Advisor monitoring the stops on the VPS. The platform allows you to manage one account from two computers simultaneously.
It looks complicated, but you have a problem with your broker, you solve it. The real options I gave you.
You can't do it yourself, ask in the Jobs section.
The platform allows you to manage one account from two computers at the same time.
This is new to me. In a nutshell, how do you do it?
Put it on two computers and control ))))))
On MT4 it is often used to open multiple positions at the same time ("pair" trading)
Put it on two computers and manage ))))))
On MT4 it is often used to open multiple positions at the same time ("pair" trading)
That's cool. So you can not give your EA to a client, but just remotely connect to his trading account?