Questions from Beginners MQL5 MT5 MetaTrader 5 - page 379
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
Please read the documentation:
Return value (by Ordersend())
Returns the ticket number which is assigned to the order by the trade server or -1 in case of failure.To geterrorinformation, callGetLastError().
Hello. Can you please tell me why I tested my EA with good results, but other people who downloaded the demo version of my EA from the market have poor results? What is the reason? What may be affecting the result of testing?
How do I know the symbol restrictions in MT4 (full access, close only, etc.)? Of course programmatically, I don't know how to do it with my eyes either.
Good afternoon,
Please explain what is meant by:
Signal_ThresholdOpen
Signal_ThresholdClose
How do they work, what does changing the value do?
Good afternoon,
Please explain what is meant by:
Signal_ThresholdOpen
Signal_ThresholdClose
How do they work, what does changing the value do?
Good afternoon,
Please explain what is meant by:
Signal_ThresholdOpen
Signal_ThresholdClose
How do they work, what does changing the value do?
Looked at the links, there seems to be only actual application. And they put both 60 and 50... I looked for other articles... But I didn't find anything that says what happens if I set 40 or 10 or 100...
I'm parsing an elementary MA Expert Advisor line by line from one article.
These are all input parameters; changing values affects something.
I found in the manual:
The ThresholdOpen parameter can accept values from 0 to 100. It is used to detect whether it is necessary to open a position according to "voting" results.
The "ThresholdClose" parameter can take values from 0 to 100. Used for determining whether the position should be closed following the results of "voting".
What is this "voting"? What do these two parameters affect?
Looked at the links, there seems to be only actual application. And they put both 60 and 50... I looked for other articles... But I didn't find anything that says what happens if I set 40 or 10 or 100...
I'm parsing an elementary MA Expert Advisor line by line from one article.
These are all input parameters; changing values affects something.
I found in the manual:
The ThresholdOpen parameter can accept values from 0 to 100. It is used to detect whether it is necessary to open a position according to "voting" results.
The "ThresholdClose" parameter can take values from 0 to 100. Used for determining whether the position should be closed following the results of "voting".
What is this "voting"? What do these two parameters affect?
Select Signal_ThresholdOpen in the code and press Crrl+F to find all occurrences of this variable in the code and examine all calculations this variable takes part in. Similarly, search for ThresholdClose.
See if you can figure it out ;)