question about buy or sell opened trade

 

hi  guy 

how is possible , know  if  a  opened trade  is  in buy or sell ???


thankz  at  all

 
Use function OrderSelect then OrderType.
 

hi try  i create a simply script  for  , see how  work order type 

but ordenopenprice work correct  , and  ordertype return me  only number 1 (i think is position ??? i have only  one  trade )

  if(OrderSelect(108843558, SELECT_BY_TICKET)==true)
    {
       Print(OrderType());
       Print(OrderOpenPrice());
     // ...
    }
 

In MetaEditor click Help --> MQL4 Reference --> OP_SELL

OP_SELL value is  1
OP_BUY value is 0

Reason: