- How many alerts can I receive at once?
- Trade Notifications Not Working,
- problem with mql4 indicator and with sendnotification
Yes, there are limits. It is in the documentation which it seems you did not read ...
Note
Strict use restrictions are set for the SendNotification() function: no more than 2 calls per second and not more than 10 calls per minute. Monitoring the frequency of use is dynamic. The function can be disabled in case of the restriction violation.
- docs.mql4.com
IIRC, the maximum limit on emails, is just like SendNotification: “no more than 2 calls per second and not more than 10 calls per minute.” Add a Sleep(6) (or indicator equivalent) after the Send… and wrap a mutex around both (for multiple charts).
IIRC, the maximum limit on emails, is just like SendNotification: “no more than 2 calls per second and not more than 10 calls per minute.” Add a Sleep(6) (or indicator equivalent) after the Send… and wrap a mutex around both (for multiple charts).
But I get up to 30 calls in less than 10 seconds. My issuse is that the EA ignores the remaining notifications after the 30th one. Alsi, I see your mutex is a binary file and not a block of code. I must say I am grateful. But I need to know the command to use the mutex. Should it be placed before or after the SendNotification() command? The word "wrap" is even more confusing. Is it a Keyword?
But I get up to 30 calls in less than 10 seconds. My issuse is that the EA ignores the remaining notifications after the 30th one.
Alsi, I see your mutex is a binary file and not a block of code.
But I need to know the command to use the mutex. Should it be placed before or after the SendNotification() command? The word "wrap" is even more confusing. Is it a Keyword?
- Notifications/email is from your EA to your phone/mail. You are confused.
- I posted a mqh source file not binary. Go to Prevent EA from opening trades at the same time across 2 or more pairs? - MQL4 programming forum - Page%nbsp;2 #11 (2022) for a stand alone version.
- See Prevent EA from opening trades at the same time across 2 or more pairs? - MQL4 programming forum - Page 2 #13. Understand what a mutex does and you should understand what “wrap” means.
"...Monitoring the frequency of use is dynamic. The function can be disabled in case of the restriction violation."
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use