1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-07 16:06:15 +00:00

Add GenerateClientOrderId to shared order clients

This commit is contained in:
Jkorf 2025-03-06 16:13:20 +01:00
parent 54aa6907f9
commit 142cba5cca
2 changed files with 13 additions and 0 deletions

View File

@ -31,10 +31,17 @@ namespace CryptoExchange.Net.SharedApis
/// </summary>
SharedQuantitySupport FuturesSupportedOrderQuantity { get; }
/// <summary>
/// Generate a new random client order id
/// </summary>
/// <returns></returns>
string GenerateClientOrderId();
/// <summary>
/// Futures place order request options
/// </summary>
PlaceFuturesOrderOptions PlaceFuturesOrderOptions { get; }
/// <summary>
/// Place a new futures order
/// </summary>

View File

@ -31,6 +31,12 @@ namespace CryptoExchange.Net.SharedApis
/// </summary>
SharedQuantitySupport SpotSupportedOrderQuantity { get; }
/// <summary>
/// Generate a new random client order id
/// </summary>
/// <returns></returns>
string GenerateClientOrderId();
/// <summary>
/// Spot place order request options
/// </summary>