double OrderStopLoss( )
Returns stop loss value for the currently selected order.
現在、選択されているオーダーの損切り値を返します。
Note: The order must be previously selected by the OrderSelect() function.
注意: オーダーは、OrderSelect()
関数で事前に選択されている必要があります。
Sample:
サンプル:
if(OrderSelect(ticket,SELECT_BY_POS)==true)
Print("Stop loss value for the order 10 ", OrderStopLoss());
else
Print("OrderSelect failed error code is",GetLastError());
|