Skip to content

OrderType Property

Summary

Specifies whether this order is Stop or Limit.

Signature

1
public abstract PendingOrderType OrderType {get;}

Return Value

PendingOrderType

Declaring Type

cAlgo.API.PendingOrder

Examples

1
2
3
 var result = PlaceLimitOrder(TradeType.Buy, Symbol, 10000, targetPrice);
 var order = result.PendingOrder;
 Print("Order type = {0}", order.OrderType);

Last update: March 23, 2023