Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
To lock it so nobody else can copy the program except the buyer, you can get a programmer to have it so you enter in the buyers trading account number, so only that trading account number will unlock the program when it is compiled. Also, you can put a licensing time so the program will work and then lock up (demo testing). If you want to know who can program this, contact me at ddiebold@sbcglobal.net
To lock it so nobody else can copy the program except the buyer, you can get a programmer to have it so you enter in the buyers trading account number, so only that trading account number will unlock the program when it is compiled. Also, you can put a licensing time so the program will work and then lock up (demo testing). If you want to know who can program this, contact me at ddiebold@sbcglobal.net
Dave
<><
Hello Traders,
It is a commercial proposal, not free
__________________
All long voyages always start from the first small steps ...
Still the idea is not clear please explain in detail how can I do this Lock..
Thanks
If we are talking about ex4 file so you may insert in original mql4 code any account number, for example (in the beginning of the code just below the settings):
Code:
int Account = 111111;
And below
Code:
int start
may be the following:
Code:
if (Account != AccountNumber()){
Comment("Trade on account :"+AccountNumber()+" FORBIDDEN!");
return(0);
}else {Comment("");}
As to trial version so you may do the following (below int start):
Code:
if (CurTime()>1113609600) { //16.04.2005
Alert("My EA was expired! Please re-new your licence");
return;
}
If we are talking about ex4 file so you may insert in original mql4 code any account number, for example (in the beginning of the code just below the settings):
Code:
int Account = 111111;
And below
Code:
int start
may be the following:
Code:
if (Account != AccountNumber()){
Comment("Trade on account :"+AccountNumber()+" FORBIDDEN!");
return(0);
}else {Comment("");}
As to trial version so you may do the following (below int start):
Code:
if (CurTime()>1113609600) { //16.04.2005
Alert("My EA was expired! Please re-new your licence");
return;
}
What is this number: 1113609600?
It is the time in seconds since 00:00 1st of January 1970. It is hard to count the seconds. And if you do not want to count it you may do the following:
2. Compile it in MT3.
3. Attach EA to the chart (MT3) and you will see on the chart the number of seconds since 00:00 1st of Janusry 1970 till 2006.08.16 00:00.
// ««« SYSTEM INITIALIZATION SECTION: »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»
if( DataValidated ) {
if( SystemRegistration( SystemSymbol, Symbol(), Append ) == Done ) {
if( UserVerification( Comfirmed )) {
RightsToTrading = Granted;
SystemMode = StandBy;
SystemTag = GetTagNumber();
CurrencyID = GetCurrencyID( Symbol() );
RunSerialNumber = ( SystemTag + Space + SystemSymbol + Space +
CurrencyID + Space + SystemStartTime );
Authentication = ( LicenseInfo + RunSerialNumber );
Print( "System Initialization Completed: ", AccountCompany(), " Has ",
AccountName()," As The Authorized User Of This Account, ",
"Under The System Software License [ ", LicenseNumber, " ]." );
} else {
Print( "System Initialization FAILURE: You are not recognized as the ",
"Licensed User of this software." );
} // End If, UserVerification:
Print( "System Registration Process Completed Successfully." );
} else {
Print( "System Registration FAILURE: System could not complete the ",
"registrattion process: Fatal Error System Halted." );
} // End If, SystemRegistration:
} else {
Print( "Data Validation FAILURE: System Mode is Off Line, The system can ",
"not be activated till the above condition is corrected." );
} // End If, DataValidated: