*REQ* Account balance alert.

 
Hi,
Does anybody has indicator related to account balance?
I need an indicator that alerts me when there's change in account balance.
If account balance is decreasing, then play sound "A", and if decreasing play sound "B". Just simple as that.

It seems fun hearing sounds from EA's trade. :)


Anyone can help?

Thank you
 

Create a new indicator and insert this text

int start(){

   double oldBalance;

   if(oldBalance != AccountBalance()){

      Alert("Balance changed...");

      oldBalance = AccountBalance();

   }

return(0);
 
phy:

Create a new indicator and insert this text

thank you mr Phy,

with a little modification, i finally finish my little indicator...

thanks once again

 
phy:

Create a new indicator and insert this text

hi, can you help me more in creating this indicator ?
 
look @ the date, when this post has been created
 
naji:
hi, can you help me more in creating this indicator ?
No Slaves here, learn to code or pay someone. We're not going to code it FOR you. We are willing to HELP you.