Need an indicator that gives a sound alert every 14 minutes..!
thanks for the helpers...!
thanks for the helpers...!
Need a kind soul to add sound/email alert to indicator 4 replies
Trendline Break Alert Indicator. Need help changing sound 5 replies
Need Indicator To Draw Horizontal Lines/Sound Alert 3 replies
Need help with indicator on sound/arrow alert 3 replies
I'm looking for coder [need a sound alert to indicator I already have] 0 replies
#property copyright ""
#property link ""
#property show_inputs
extern int seconds = 1;
//+------------------------------------------------------------------+
//| script program start function |
//+------------------------------------------------------------------+
int init(){
seconds = seconds * 1000;
}
int start()
{
while(true)
{
Sleep(seconds);
PlaySound("alert.wav");
}
return(0);
} int start()
{
Sleep(seconds);
PlaySound("alert.wav");
start();
return(0);
} Disliked3 lines of code added. This might do the trick. #property copyright "" #property link "" #property show_inputs extern int seconds = 1; //+------------------------------------------------------------------+ //| script program start function | //+------------------------------------------------------------------+ int init(){ seconds = seconds * 1000; } int start() { while(true) { Sleep(seconds); PlaySound("alert.wav"); } return(0); } or the recursive version int start() { Sleep(seconds); PlaySound("alert.wav"); start(); return(0); }Ignored
Disliked{quote} just flooding me with sound notifications.. is can set it for just 1 sound notification and from 0, even if i closed the mt4 and open it again it will notify my just when the time comes i need it to notify me just 1 time every time that i got 1 minute left to the 15m candle closer like: 18:59 19:14 19:29 19:44 19:59 etc.. thank you for your time mateIgnored