Say & Ask anything/everything - page 22

 
seyed hossein #:
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)‌

Thank a lot

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.

 
When I login to MQL5 I see these messages:
The possibilities of your account are limited
You cannot add any posts and edit your personal information.
Can you please advise me why these messages are there & what significance they have?

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
 
Col #: Can you please advise me why these messages are there & what significance they have?

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

 
pawouck #:

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:

input int InpSL = 1000;
Also, your inputs should be defined on the global scope above OnInit()/OnDeinit().