
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
Is this string preventing a second order from opening?
Total = OrdersTotal();
//Check position
bool IsTrade = False;
for (int i = 0; i < Total; i ++) {
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if(OrderType() <= OP_SELLSTOP && OrderSymbol() == Symbol()) {
IsTrade = True;
if(OrderType() == OP_BUYSTOP) {
How do I change it to allow as a second trade? Could someone explain the process?
Please Help!