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
Hi guys . I just started coding. I want to know how much I can earn on average after 3 months from selling Expert Advisor. (Since I have worked in financial markets for many years, I have many profitable strategies)
Respectfully, it has more to do with web marketing than profitability. There are quite a few profitable strategies that are buried in the Market due to lack of marketing. Believe it or not, pricing up an EA can have somewhat of a positive effect on the Market ranking. I actually created a resorted list of over 5000 MT5 EA's from the Market a while ago.
Also, I am looking for the 'create job' Freelance page, but can not find it. How do I create a new job?
Thank you and kind regards,
Colin Farrell
you need to contact support to find out the reason why your account is locked.
I would like to say to all sellers........ put a LIVE SIGNAL link on your Algo.
Me personally (as a buyer) if i open an Algos page from a seller and it has no live signal link to a REAL ACCOUNT I automatically wont entertain it, no matter how much they try to hype it up! (I am sure i am not the only one).
Soooooo....to all sellers ..... get those live signals up on your page to a real account not a demo (where you aren't even risking your own money on your algo!)
Hi, I am just starting with MetaEditor and EA programming.
One thing is driving me crazy and i need to find out.
I have input params in my code like:
input uint InpSL = 1000;
but when I run in historical data, this init value is ignored and set to 200.
(In real time it works fine)
Where can I set default values for Input params? Or how to be sure my init value is taken?
Thanks for answer,
Petr
Hi, I am just starting with MetaEditor and EA programming.
One thing is driving me crazy and i need to find out.
I have input params in my code like:
input uint InpSL = 1000;
but when I run in historical data, this init value is ignored and set to 200.
(In real time it works fine)
Where can I set default values for Input params? Or how to be sure my init value is taken?
Thanks for answer,
Petr
Try using the signed integer data type instead:
Also, your inputs should be defined on the global scope above OnInit()/OnDeinit().