Quote:
Originally Posted by WNW
I want to run my EAs from a VPS.
For security purposes I want to encode my brokerage account number and upload the compiled version.
Can someone please describe the code to add?
Thanks.
|
The code is here (on the first page of this thread
How to LOCK/Encrypt EA ).
Besides there is
EA in elite section with account protection coded.
Quote:
1. MA_ExpertProfit.mq4: it is the same EA but it will close the orders in s/l or t/p only.
2. MA_ExpertProfit_all.mq4: it will close the order on s/l or t/p, or on the other crossing signal. This EA should work on particular account only. Just change the line "int Account = 111111;" to your account number inside the code. For example your account is 1235463. So this line should be like this:
int Account = 1235463;
3. MA_ExpertProfit_noacc.mq4: it is the same with item # 2. But without any account and it may work in any account (i mean account in Metatrader).
|
If you are not elite member so I may post the codes here but it is very well-known subject described here in public:
How to LOCK/Encrypt EA
More difficult is to create the licence number, set the broker,
Code:
UserVerification(Confirmed)
and so on.
As I know some coders are very professional with this priotecting issues so you may see them from this thread
How to LOCK/Encrypt EA