Since few years I'm locking how to add code to protect my Strategy with ACCOUNT ID
With MQL4
I ADD THIS CODE :
IF (Account != AccountNumber())
{
Alert ( " Wrong Account Number" );
return(0);
}
But in TradeSation , Nothing Work !!
Any Suggestions
Hello Dear All
I'm working on TradeSation Automated Strategies , but I'm confused how to protect code with internal parameters function to work only by defined :
* Trial period
* Account ID Number
And the most common problems is protect this code against cracking and hackers.
I hope some...