
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
How can customize this structure?
I'm using a phone with no js. Bear with me on this piece of code. struct CustomRequest:public MqlTradeRequest{ }; This will not help if you need to access the counter after trade request, since it's used only once during ordersend. You can try doing this using MqlTradeResult, since it has information such as deal ticket, which you can use to select the position. struct CustomResult: public MqlTradeResult { int counter1, counter2; }; Then use this in your Ordersend,in stead of using MqlTradeResult.