If you have a pop-up alert followed by a playsound in your code, the sound willl not be played so you only hear the sound for the pop-up alert. You will need to code a small break in between to hear the playsound
GumRai:
If you have a pop-up alert followed by a playsound in your code, the sound willl not be played so you only hear the sound for the pop-up alert. You will need to code a small break in between to hear the playsound
Thanks GumRai I'll give that a try.
If you have a pop-up alert followed by a playsound in your code, the sound willl not be played so you only hear the sound for the pop-up alert. You will need to code a small break in between to hear the playsound
Keith Watford:
If you have a pop-up alert followed by a playsound in your code, the sound willl not be played so you only hear the sound for the pop-up alert. You will need to code a small break in between to hear the playsound
If you have a pop-up alert followed by a playsound in your code, the sound willl not be played so you only hear the sound for the pop-up alert. You will need to code a small break in between to hear the playsound
Hello Keith,
What would be an example of a "a small break" that I can add into the indicator code.
Thanks
agrant2003: What would be an example of a "a small break" that I can add into the indicator code.
#define MAX_DATETIME D'3000.12.31 23:59:59' static datetime delaySound = MAX_DATETIME; if(TimeCurrent() >= delaySound){ delaySound = MAX_DATETIME; playSound...; } if(condition){ delaySound = TimeCurrent() + 5; doAlert...; }
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
I have an indicator that uses the Playsound command to use alert2.wav. But when an alert is triggered it uses alert.wav instead and all other alerts use alert.wav also.
If I untick Tools/Options/Events Enable then alert2.wav works but all other alerts do not make a sound.
What have I done wrong?
MQL4 Build 950