/// <summary>
 /// Send to exchange command to cancel limit order.
 /// </summary>
 /// <param name="order">Order that needs to cancel. <see cref="OrderBase"/></param>
 /// <returns>True if success else false.</returns>
 public bool CancelOrder(OrderBase order) => Account.CancelOrder(order);
예제 #2
0
 public bool Cancel() => Account?.CancelOrder(this) ?? false;