classReplaceOrderDetails
/// <summary>
/// Replace-order payload sent via DefaultHub.ReplaceOrder
/// </summary>
public class ReplaceOrderDetails
{
public int OrderId { get; set; }
public decimal? LimitPrice { get; set; }
public decimal? StopPrice { get; set; }
public decimal? Quantity { get; set; }
}| ReplaceOrderDetails | Type | Description | Example value |
|---|---|---|---|
| OrderId | int | 12345678 | |
| LimitPrice | decimal? | 1.086 | |
| StopPrice | decimal? | null | |
| Quantity | decimal? | 0.5 |
Example JSON
{
"orderId": 12345678,
"limitPrice": 1.086,
"stopPrice": null,
"quantity": 0.5
}