Pop-up alert for buy-sell signal

#1
Hai seniors and experts , can anybody help in setting pop-up alert for the buy-sell signal generated . It shall be a great help.
 
#4
Use the below code at the end of your afl


{

if( SelectedValue( Buy ) )
PopupWindow(" Buy on "+ Name(), "Alert");
if( SelectedValue( Sell ) )
PopupWindow(" Sell on "+ Name(),"Alert");
if( SelectedValue( Short ) )
PopupWindow(" Short on "+ Name(),"Alert");
if( SelectedValue(Cover ) )
PopupWindow(" Short on "+ Name(),"Alert");
}
 

Similar threads