Adding sounds to alert in tradestation

Can anyone help on this, I have looked through and I can't find where I can add sounds to my signal alerts on tradestation.

Can I?

If so, how?

Not interested in calling their help desk, I never have luck with phonegeeks.

Thanks in advance,

Rapidfire FX out---------------------------------------------
 
use this keyword:

PLAYSOUND
Plays the specified wave (.wav) sound file.

Usage
PlaySound("PathFilename");

Where: PathFilename - a string expression specifying the path and filename of the wave file to be played

Example
Play ding.wav sound file located in the root directory of the C: hard drive:

PlaySound("C:\ding.wav");


you can add a trigger to the statement:

If Condition1 = true then PlaySound("C:\ding.wav");
 
Back
Top