if you are using the same format i think you are, here's a way i prefer to use, i learned it from aaragorn

.
Where it says, which i think defines your description.
PHP Code:
if(OrdersTotal() < 1)
i like to add a global variable and use it like this
PHP Code:
if(OrdersTotal() < MaxOpenTrade)
and be sure to add global variable
PHP Code:
extern double MaxOpenTrade = 4
at the top.
i use this method simply becuase it's quicker to edit, and can be done quickly through the tester window for experementing.
simple as that
