In an EA, what code will I use to make BUY/SELL signal appear as options in the EA control panel: This s required because the stategy can only work fo BUYs or SELLs on different indices and not both at the same time.
- Has anybody experience in trading binary options using EA???
- [Archive!] Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Couldn't go anywhere without you - 2.
- Requests & Ideas (MQL5 only!)
Rasheed Afolabi:
In an EA, what code will I use to make BUY/SELL signal appear as options in the EA control panel: This s required because the stategy can only work fo BUYs or SELLs on different indices and not both at the same time.
In an EA, what code will I use to make BUY/SELL signal appear as options in the EA control panel: This s required because the stategy can only work fo BUYs or SELLs on different indices and not both at the same time.
enum ENUM_INPUT {BUY,SELL}; input ENUM_INPUT userInput = BUY;
extern bool buyOrder = true; extern bool sellOrder = true; if("your entry rules" && buyOrder == true){ "then executed the trades" }I think this should fix your problem. Of course there's many way to solve this.
Nor Azman Bin Ramli:
I think this should fix your problem. Of course there's many way to solve this.
I think this should fix your problem. Of course there's many way to solve this.
Thanks
Mohamad Zu
Thank you: It works
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