My System - My trades.

ankur07090ji,cant we add audio alert for entry and add for this afl?
Add below code in the last (before section end)...I have not checked but might work
Code:
if (SelectedValue(b1)==1) Say("Buy Signal triggered " + Close);
if (SelectedValue(s1)==1) Say("Sell Signal triggered" + Close);

if (SelectedValue(b2)==1) Say("Add in Buy Signal triggered " + Close);
if (SelectedValue(s2)==1) Say("Add in Sell Signal triggered" + Close);
 
ankur07090ji,cant we add audio alert for entry and add for this afl?
This way you can also use...
Code:
AlertIf( Buy, "SOUND C:\\Windows\\Media\\notify.wav", "Audio alert", 2);
AlertIf( Sell, "SOUND C:\\Windows\\Media\\tada.wav", "Audio alert", 2 );
change the path as per your system directory of the sound file
 

Similar threads