CancelOrder()

Cancels a Limit or Stop order which is pending on the exchange.

Parameters

Name

Type

Description

order

IOrder

Order which should be canceled.

Example

Basic example
// Cancels a Limit or Stop order which is pending on the exchange
var limitOrder = EnterLongLimit(limitPrice);
CancelOrder(limitOrder);

Last updated