Skip to content

StopLossPips Property

Summary

The order stop loss in pips

Signature

1
public abstract double? StopLossPips {get;}

Return Value

double?

Declaring Type

cAlgo.API.PendingOrder

Examples

1
2
3
4
 var result = PlaceLimitOrder(TradeType.Buy, Symbol, 10000,
                     Symbol.Bid, null, 10, 10);
 var order = result.PendingOrder;
 Print("Order SL pips = {0}", order.StopLossPips);

Last update: March 30, 2023