
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
I’m trying to write a boolean variable that is true when no orders are opened on the current Symbol().
I receive the error “too complex expression”.
Bool Opened = for(cnt=0;cnt<=total;cnt++)
{
OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
OrderSymbol()!=Symbol() // check for symbol
}
How can I adjust?
Thank you!