mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-14 09:52:53 +00:00
6b14cdbf06
* Added support for Native AOT compilation * Updated all IEnumerable response types to array response types * Added Pass support for ApiCredentials, removing the need for most implementations to add their own ApiCredentials type * Added KeepAliveTimeout setting setting ping frame timeouts for SocketApiClient * Added IBookTickerRestClient Shared interface for requesting book tickers * Added ISpotTriggerOrderRestClient Shared interface for managing spot trigger orders * Added ISpotOrderClientIdClient Shared interface for managing spot orders by client order id * Added IFuturesTriggerOrderRestClient Shared interface for managing futures trigger orders * Added IFuturesOrderClientIdClient Shared interface for managing futures orders by client order id * Added IFuturesTpSlRestClient Shared interface for setting TP/SL on open futures positions * Added GenerateClientOrderId to ISpotOrderRestClient and IFuturesOrderRestClient interface * Added OptionalExchangeParameters and Supported properties to EndpointOptions * Refactor Shared interfaces quantity parameters and properties to use SharedQuantity * Added SharedSymbol property to Shared interface models returning a symbol * Added TriggerPrice, IsTriggerOrder, TakeProfitPrice, StopLossPrice and IsCloseOrder to SharedFuturesOrder response model * Added MaxShortLeverage and MaxLongLeverage to SharedFuturesSymbol response model * Added StopLossPrice and TakeProfitPrice to SharedPosition response model * Added TriggerPrice and IsTriggerOrder to SharedSpotOrder response model * Added QuoteVolume property to SharedSpotTicker response model * Added AssetAlias configuration models * Added static ExchangeSymbolCache for tracking symbol information from exchanges * Added static CallResult.SuccessResult to be used instead of constructing success CallResult instance * Added static ApplyRules, RandomHexString and RandomLong helper methods to ExchangeHelpers class * Added AsErrorWithData To CallResult * Added OriginalData property to CallResult * Added support for adjusting the rate limit key per call, allowing for ratelimiting depending on request parameters * Added implementation for integration testing ISymbolOrderBook instances * Added implementation for integration testing socket subscriptions * Added implementation for testing socket queries * Updated request cancellation logging to Debug level * Updated logging SourceContext to include the client type * Updated some logging logic, errors no longer contain any data, exception are not logged as string but instead forwarded to structured logging * Fixed warning for Enum parsing throwing exception and output warnings for each object in a response to only once to prevent slowing down execution * Fixed memory leak in AsyncAutoRestEvent * Fixed logging for ping frame timeout * Fixed warning getting logged when user stops SymbolOrderBook instance * Fixed socket client `UnsubscribeAll` not unsubscribing dedicated connections * Fixed memory leak in Rest client cache * Fixed integers bigger than int16 not getting correctly parsed to enums * Fixed issue where the default options were overridden when using SetApiCredentials * Removed Newtonsoft.Json dependency * Removed legacy Rest client code * Removed legacy ISpotClient and IFuturesClient support
129 lines
3.8 KiB
C#
129 lines
3.8 KiB
C#
using System;
|
|
|
|
namespace CryptoExchange.Net.SharedApis
|
|
{
|
|
/// <summary>
|
|
/// Futures order info
|
|
/// </summary>
|
|
public record SharedFuturesOrder : SharedSymbolModel
|
|
{
|
|
/// <summary>
|
|
/// Id of the order
|
|
/// </summary>
|
|
public string OrderId { get; set; }
|
|
/// <summary>
|
|
/// Type of the order
|
|
/// </summary>
|
|
public SharedOrderType OrderType { get; set; }
|
|
/// <summary>
|
|
/// Side of the order
|
|
/// </summary>
|
|
public SharedOrderSide Side { get; set; }
|
|
/// <summary>
|
|
/// Status of the order
|
|
/// </summary>
|
|
public SharedOrderStatus Status { get; set; }
|
|
/// <summary>
|
|
/// Time in force for the order
|
|
/// </summary>
|
|
public SharedTimeInForce? TimeInForce { get; set; }
|
|
/// <summary>
|
|
/// Position side
|
|
/// </summary>
|
|
public SharedPositionSide? PositionSide { get; set; }
|
|
/// <summary>
|
|
/// Reduce only
|
|
/// </summary>
|
|
public bool? ReduceOnly { get; set; }
|
|
/// <summary>
|
|
/// Order quantity
|
|
/// </summary>
|
|
public SharedOrderQuantity? OrderQuantity { get; set; }
|
|
/// <summary>
|
|
/// Filled quantity
|
|
/// </summary>
|
|
public SharedOrderQuantity? QuantityFilled { get; set; }
|
|
/// <summary>
|
|
/// Order price
|
|
/// </summary>
|
|
public decimal? OrderPrice { get; set; }
|
|
/// <summary>
|
|
/// Average price
|
|
/// </summary>
|
|
public decimal? AveragePrice { get; set; }
|
|
/// <summary>
|
|
/// Client order id
|
|
/// </summary>
|
|
public string? ClientOrderId { get; set; }
|
|
/// <summary>
|
|
/// Asset the fee is in
|
|
/// </summary>
|
|
public string? FeeAsset { get; set; }
|
|
/// <summary>
|
|
/// Fee paid
|
|
/// </summary>
|
|
public decimal? Fee { get; set; }
|
|
/// <summary>
|
|
/// Leverage
|
|
/// </summary>
|
|
public decimal? Leverage { get; set; }
|
|
/// <summary>
|
|
/// Timestamp the order was created
|
|
/// </summary>
|
|
public DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
|
/// Last update timestamp
|
|
/// </summary>
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Last trade info, only available for websocket order updates if the API provides this data in the update
|
|
/// </summary>
|
|
public SharedUserTrade? LastTrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// Trigger price for a trigger order
|
|
/// </summary>
|
|
public decimal? TriggerPrice { get; set; }
|
|
/// <summary>
|
|
/// Whether or not the is order is a trigger order
|
|
/// </summary>
|
|
public bool? IsTriggerOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Take profit price
|
|
/// </summary>
|
|
public decimal? TakeProfitPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// Stop loss price
|
|
/// </summary>
|
|
public decimal? StopLossPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// Whether this order is to close an existing position. If this is the case quantities might not be specified
|
|
/// </summary>
|
|
public bool? IsCloseOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
public SharedFuturesOrder(
|
|
SharedSymbol? sharedSymbol,
|
|
string symbol,
|
|
string orderId,
|
|
SharedOrderType orderType,
|
|
SharedOrderSide orderSide,
|
|
SharedOrderStatus orderStatus,
|
|
DateTime? createTime)
|
|
: base(sharedSymbol, symbol)
|
|
{
|
|
OrderId = orderId;
|
|
OrderType = orderType;
|
|
Side = orderSide;
|
|
Status = orderStatus;
|
|
CreateTime = createTime;
|
|
}
|
|
}
|
|
}
|