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
Good afternoon,
I would like to ask the organisers of the championship: is it possible to use the "SendMail(,)" function?
Hello, could you please explain the purpose of the Discussion box in a member's profile? As far as I understand, comments can be added there either by the administrator or by the participant. But how will "mere mortals" be able to add comments?
All experts will definitely be reviewed!
Participants will have until 1 October to respond to possible comments to the experts.
Thanks for the reassurance. Unfortunately I didn't even have time to put in the freemargine check, I guess that won't be necessary... I don't want to go down to $100... . I hope my EA will not make more than 20 deals during the Championship.
If we find that your EA has no check of free funds, we simply will not allow it to participate in the Championship.
Consider the presence of a correct check of funds, the presence of correct checks on the number of orders and lots as a "qualifying run"
Would it be too late to replace the expetrt in the pofil with its latest version on Monday 25 September?
Thank you for your reply. The best will win.
But registration for new participants will close tomorrow.
I have a comment to the Expert Advisor about checking for available funds.
The first option with this check passed:
if(OrdersTotal()< 3 && (CurTime()-TIME_OUT) > (60))
{
if(AccountFreeMargin()<(1000))
{
return(0); // money is low - exit
}
if(AccountFreeMargin()>(5500))
{
Lots=5;
}
if(AccountFreeMargin()<(5500))
{
Lots=4;
}
if(AccountFreeMargin()<(4500))
{
Lots=3;
}
if(AccountFreeMargin()<(3500))
{
Lots=2;
}
if(AccountFreeMargin()<(2500))
{
Lots=1;
}
...................................
I didn't change this part in the second version, but it doesn't work now. Where did I go wrong?