当前位置:首页 > 外汇 > mt4编程mq4统计当前持仓数量函数模块

mt4编程mq4统计当前持仓数量函数模块

吴明6年前 (2018-10-01)外汇5143

这段代码可以统计当前持仓的订单总数。


double 持仓数() 

 {    

int    

cnt,    

total=0;    //   

 for(cnt=0;cnt<OrdersTotal();cnt++)      

{

if(OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES)){};   

//OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);       

if(OrderType()<=OP_SELL) total++;      

}    

return


标签: mq4统计

相关文章

mt4编程mq4统计本金(入金总和减去出金总和)函数模块

mt4编程mq4统计本金(入金总和减去出金总和)函数模块

double 本金() {    double total=0;    for (int i=0; i<OrdersHist...