Describe the bug
I believe the IFTXClientTradeApiTrading.ModifyOrderByClientOrderIdAsync interface and impl should take a string for clientOrderId (the first argument)
To Reproduce
See here:
|
Task<WebCallResult<FTXOrder>> ModifyOrderByClientOrderIdAsync(long clientOrderId, decimal? price = null, decimal? quantity = null, string? newClientOrderId = null, string? subaccountName = null, CancellationToken ct = default); |
clientOrderId is declared as a long
Expected behavior
clientOrderId is a string in the cancel and place methods, so it should probably be a string here.