Hi,

Please check out MTF AllAveragesCrossover indicator with advanced Box Alert, which allow any number of repetitive sound alerts with different .wav files. Also you have an option to send any number of Emails after signal.

Code:
extern int     TimeFrame             =   0;   //TimeFrame in min
extern string  FastMA                = "--- Fast MA ---";
extern int     FastPrice             =   0;   //Price Mode (0...10)
extern int     FastLength            =   5;   //Period of smoothing
extern int     FastMode              =   2;   //See list above

extern string  SlowMA                = "--- Slow MA ---";
extern int     SlowPrice             =   0;   //Price Mode (0...10)
extern int     SlowLength            =  21;   //Period of smoothing
extern int     SlowMode              =   0;   //See list above
   
extern string  Alerts                = "--- Alerts & E-Mails ---";
extern int     AlertMode             =   0;
extern int     SoundsNumber          =   5;   //Number of sounds after Signal
extern int     SoundsPause           =   5;   //Pause in sec between sounds 
extern string  UpSound               = "alert.wav";
extern string  DnSound               = "alert2.wav";
extern int     EmailMode             =   0;   //0-on,1-off   
extern int     EmailsNumber          =   1;   //0-on,1-off

Attachment 1281


Regards,
Igor