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
Do you only write EAs or do you do indicators as well? I have an idea, maybe a good one, maybe not so good that's why I don't want to hire them for a fee. If you are interested, I would like to discuss it in private.
What's so boring?! Tell me an idea, if it's worthwhile, you might get it written to you quicker. There's more than one person reading this thread)
I need a freelancer to write an EA, let's discuss the algorithm.
There is a working trading system it is necessary to automate it, there is not enough time to trade manually as there is also the main work.Who will help solve the problem of writing the advisor.we will use and earn together.
I need a freelancer to write an EA, let's discuss the algorithm.
There is a working trading system it is necessary to automate it, there is not enough time to trade manually as there is also the main work.Who will help solve the problem of writing the advisor.we will use and earn together.
Good afternoon, everyone. I want to ask a question to people who know.
When compiling an EA, the following entries appear:
The programmer, who wrote this EA for me, is unavailable. That is why I have to refer it here. I will be very grateful if somebody could help me.
Explain in plain language to a mere mortal .... How do I fix it? Or, what would be ideal - I would be able to lay out the code, and you would see what can be done.
It would probably take you a couple of minutes.
Thanks in advance for any feedback.
Sincerely.
...When compiling the EA, the following entries appear:
1) 'void' function returns a value - void function cannot return a value and you have it in line 580. Remove return from line 580.
2) Declaration of 'ld1' hides global declaration - variable names coincide. The name of the variable in the function is identical to the global variable's name. We have to sort it out and rename it here.
3) Return value of 'OrderModify' should be checked - the returned value from OrderModify should be checked - there's nothing wrong about not checking it. But it's a good idea to check it.
4) return value of 'OrderClose' should be checked - the same thing but from the OrderClose function
5) declaration of 'FS' hides global declaration - the same variable overriding as in the second item
1) 'void' function returns a value - void function cannot return a value and you have it in line 580. Remove return from line 580.
2) Declaration of 'ld1' hides global declaration - variable names overlap. The name of the variable in the function is identical to the global variable's name. We have to sort it out and rename it here.
3) Return value of 'OrderModify' should be checked - the returned value from OrderModify should be checked - there's nothing wrong about not checking it. But it's a good idea to check it.
4) return value of 'OrderClose' should be checked - the same but from OrderClose function
5) declaration of 'FS' hides global declaration - also variable overriding, as in the second paragraph
Oksana, thank you for the feedback on my post. I seem to have understood void, but everything else is a dark forest for me.
Would it be impertinent of me to ask you to view code of Expert Advisor? If not, I can send you the code... it may come in handy for you too.
Thank you in advance.
Hello, can you please help me compose the code?
I need the robot to check if the volume of each minute candle (external historical data from analytics platform, no such thing in MT) corresponds to a given condition in thestrategy tester (on history). This is to test a trading idea.
Please advise how to create a file with these external data to be accessed by the Expert Advisor, and what should be the structure of data there? There is external data containing info about open time of candlesticks with volumes of deals and the volumes of deals:
What is the correct way to record time-volume and with what extension to create a file so that MT4 in the strategy tester will pick up this data when accessing the file?
Thanks in advance.