Jeannyflare:
Hi everyone
could someone help me to get a function for counting open orders
thank you very much :)
You're not learning anything by asking for something. You should learn to code and attempt it yourself, then post your attempt here. Then we would assist you and guide where possible. Anyways, here:
int OpenOrdersThisPair(string pair) { int total=0; for(int a=OrdersTotal()-1; a>=0; a--) { if(OrderSelect(a,SELECT_BY_POS,MODE_TRADES)) if(OrderType()<=1) if(OrderSymbol()==pair) total++; } return(total); }

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 everyone
could someone help me to get a function for counting open orders
thank you very much :)