[Archive!] Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Couldn't go anywhere without you - 2. - page 339
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
sergeev
This is instead of a stop (I got it from some Expert Advisor). I have been using this function on other pairs (with price correction of course) and it works fine. The yen is glitchy, I don't understand why.
sergeev
This is instead of a stop (I got it from some Expert Advisor). I have been using this function on other pairs (with price correction of course) and it works fine. The yen is glitchy, I don't understand why.
https://docs.mql4.com/ru/trading/OrderSend
Can you please tell me how to change and/or remove confidential information in the tester report? It turns out like a picture and I can't change anything.
in MT report tab, right click "save as report", then open the saved file in Windows Notepad and tweak your personal data carefully
How do I convert a tester report to send to the forum?
no way, just send it in an archive.
https://docs.mql4.com/ru/trading/OrderSend
Thanks, I will use 0 instead of NULL. However, this didn't solve the problem with Yen (checked it now).
Are you sure this problem is related to the yen? I assume that other currencies will have the same error.
Check all the parameters entered in OrderSend(). Check their (parameters) quality and quantity.
Absolutely sure. Created a whole EA working flawlessly on all pairs with 5 digits after the dot. The string is copied from it, only the price has been changed.
PS: Who can tell me what exactly error 3 means (wrong parameters). Is there a deciphering somewhere?
Thanks, I'll use 0 instead of NULL. However, this didn't solve the problem with Jena (checked it now).
Maybe another 0 (zero) is missing?
Try it this way:
I wonder how to correctly program the EA so that it does not perform calculations at every tick, but when a new bar is formed.
Maybe it goes like this:
double newbar;
start()
{
if (newbar != iLow(NULL, 0, 1))
{
calculations..........................................
newbar = iLow(NULL, 0, 1);
}
}