baby noe :
Hi guy i have a piece of code that popup a confimation box for signals that is been generated by my EA, but it work good only when i press the yes button to open the trade.
What i need is the way to ignore the signal when i press No, and let the EA to wait till next period before popping up the box again. The code is made by EAbuilder, and i trying to modifiy it to my needs. i not an expert coder, that why im asking for help of anyone. many thanks in advance
You need a window with two buttons: 'YES "and' NO ':
int message_box=MessageBox("Message","Caption",MB_YESNO); if(message_box==IDYES) { Print("YES pressed"); } else if(message_box==IDNO) { Print("NO pressed"); }

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi guy i have a piece of code that popup a confimation box for signals that is been generated by my EA, but it work good only when i press the yes button to open the trade.
What i need is the way to ignore the signal when i press No, and let the EA to wait till next period before popping up the box again. The code is made by EAbuilder, and i trying to modifiy it to my needs. i not an expert coder, that why im asking for help of anyone. many thanks in advance