Dear Traders,
I need some help to update the existing attached EA:
What is missing is that when the conditions are met for a signal (Fast (5) and Slow (12) EMA crossing and RSI (period 21) +/- 50) the message-box does not appear. It only plays the alert sound.
I can see at the end of the code in MetaEditor that the Message Box alert has been programmed, but for some reason the message box does not appear:
Is it also possible to program it that the EA also sends an e-mail or TEXT message when the conditions are met?
EA attached, thanks in advance for helping.
Regards,
Now
I need some help to update the existing attached EA:
What is missing is that when the conditions are met for a signal (Fast (5) and Slow (12) EMA crossing and RSI (period 21) +/- 50) the message-box does not appear. It only plays the alert sound.
I can see at the end of the code in MetaEditor that the Message Box alert has been programmed, but for some reason the message box does not appear:
QuoteDisliked//----
if(Alerts && entry)
{
PlaySound("stops.wav");
if (sigPrevious==1)
{
MessageBox("Entry point: buy at "+entry_point+"!!", "Entry Point", MB_OK);
}
else if (sigPrevious==2)
{
MessageBox("Entry point: sell at "+entry_point+"!!", "Entry Point", MB_OK);
}
entry=true;
}
//----
return(0);
}
//+------------------------------------------------------------------+
Is it also possible to program it that the EA also sends an e-mail or TEXT message when the conditions are met?
EA attached, thanks in advance for helping.
Regards,
Now
Attached File(s)
Being right is one, taking it from the table is two.