amibroker

ANDRE17

Member
Messages
50
Likes
0
Hi there
Im trying to get the Amibroker alert facility to work on golden cross and dead cross Emas for shares --- my formula is


trigger = Cross( EMA(Close,9), EMA(Close,18) )AND InWatchList(0);
AlertIf( trigger, "SOUND C:\\Documents and Settings\\ANDRE DE HAVILLAND\\Desktop\\fanfare3.wav", "Audio alert", 0 );


the fanfare wave3 is on my hard drive

this is found in tools/preferences/alerts/sound --------below sound is file , which is

C:\Documents and Settings\ANDRE DE HAVILLAND\Desktop\fanfare3.wav-- there is a button to check the sound and it works ok !!!

I cannot get the alert to work --could someone check my formula and whether other factors are correct please

many thanks
 
It could be the spaces in the path to the sound file - try the MSDOS (short) name which is probably something like C:\MYDOCU~1\ANDRED~1\Desktop\fanfare3.wav.

KenN
 
knorrie said:
It could be the spaces in the path to the sound file - try the MSDOS (short) name which is probably something like C:\MYDOCU~1\ANDRED~1\Desktop\fanfare3.wav.

KenN


thanks guys
 
Top