Simple license on account name – script MetaTrader 4
//+——————————————————————+ //| Amira brand | //+——————————————————————+ #property copyright “Amira Brand” #property link “https://www.mql5.com/en/users/amirabrand1998” #property version “1.00” #property strict //+——————————————————————+ //| Expert initialization function | //+——————————————————————+ int OnInit() { CheckLicense(); return(INIT_SUCCEEDED); } //+——————————————————————+ //| Expert check license | //+——————————————————————+ void CheckLicense() { Print(“Account name: “, AccountName()); if (StringFind(StringLower(AccountName()), “account name in lowercase!!”) … Read more