MQL5 怎么设置仓位手数 谁可以指导指导 ?

 
MQL5 怎么设置仓位手数  谁可以指导指导 ?
 

什么意思?什么叫怎么设置仓位手数?

 
MQL5文档: 交易函数 / OrderSend
MQL5文档: 交易函数 / OrderSend
  • www.mql5.com
交易函数 / OrderSend - MQL5文档
 

或者用标准类库函数

bool  OrderOpen(
   const string          symbol,          // symbol
   ENUM_ORDER_TYPE       order_type,      // order type
   double                volume,          // order volume
   double                limit_price,     // StopLimit price
   double                price,           // execution price
   double                sl,              // Stop Loss price
   double                tp,              // Take Profit price
   ENUM_ORDER_TYPE_TIME  type_time,       // type by expiration
   datetime              expiration,      // expiration
   const string          comment=""       // comment
   )