OrderStopLoss
OrderStopLoss
返回当前选中订单的止损值。
double OrderStopLoss();返回值
当前选中订单的止损值。
注意
该订单必须先通过 OrderSelect() 函数选中。
示例:
if(OrderSelect(ticket,SELECT_BY_POS)==true)
Print("Stop loss value for the order 10 ", OrderStopLoss());
else
Print("OrderSelect failed error code is",GetLastError());最后更新于