
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
Okay thanks, Now i must not upload funds and start trading? i must find a broker first before i do trading with MQL5?
Okay thanks, Now i must not upload funds and start trading? i must find a broker first before i do trading with MQL5?
If you want to trade on real account so you should find the broker and open account with them (you can open demo account with them using same metatrader instance which you already installed, and/or you can open real account with them and upload the fund).
Hi
can anyone tell me what the pictured text in my new EA means? It seems to me a strange EA rule! special EventKillTimer();
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//--- create timer
EventSetTimer(60);
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//--- destroy timer
EventKillTimer();
}