shabazshah23:
EA should verify all three things and how to write its code
int OnInit() { if(AccountName()!="Shabaz Shah") { Print("wrong account name!") return INIT_FAILED; } if (AccountNumber()!=1234534) { Print("wrong account number!") return INIT_FAILED; } if (AccountCompany()!="Bank") { Print("wrong account company!") return INIT_FAILED; } return(INIT_SUCCEEDED); }
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
EA should verify all three things and how to write its code