
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
hello guys,
i new here and want to create a MT4 client,
first please guide where to find working MT4 server list.
as i found these but non is working or may i don't know how to connect with.
66.114.120.2266.235.184.206
66.151.194.185
207.228.252.28
207.228.252.27
209.61.206.23
83.220.163.101
66.235.184.162
217.74.44.32
with port 443.
they way i tried to connect.
foreach (var item in mtServerList)
{
try
{
MT = new MT4(item.Server, item.Port);
richTextBox1.AppendText(Environment.NewLine + "Server: " + item.Server + Environment.NewLine + "Exception: No");
}
catch (Exception ex)
{
richTextBox1.AppendText(Environment.NewLine + "Server: " + item.Server + Environment.NewLine + "Exception: " + ex.Message + Environment.NewLine);
}
}
but all faild.
please guide me as per subject.
Thanks