Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge with JKorf/Bybit.net main #199

Closed
wants to merge 16 commits into from
Closed
5 changes: 5 additions & 0 deletions ByBit.Net/Clients/V5/BybitRestClientApiTrading.cs
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,11 @@
return await _baseClient.SendRequestAsync(_baseClient.GetUrl("v5/position/trading-stop"), HttpMethod.Post, ct, parameters, true).ConfigureAwait(false);
}

public Task<WebCallResult<BybitOrderId>?> PlaceOrderAsync(Category linear, string symbolName, OrderSide orderSide, NewOrderType value1, decimal quantity, decimal price, bool v, object value2, object value3, object value4, object value5, object value6, TimeInForce postOnly, PositionIdx positionMode, string orderId, decimal takeProfit, object stopLoss, TriggerType lastPrice1, TriggerType lastPrice2, object value7, object value8, object value9, StopLossTakeProfitMode partial, CancellationToken cancellationToken)

Check warning on line 703 in ByBit.Net/Clients/V5/BybitRestClientApiTrading.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'BybitRestClientApiTrading.PlaceOrderAsync(Category, string, OrderSide, NewOrderType, decimal, decimal, bool, object, object, object, object, object, TimeInForce, PositionIdx, string, decimal, object, TriggerType, TriggerType, object, object, object, StopLossTakeProfitMode, CancellationToken)'

Check warning on line 703 in ByBit.Net/Clients/V5/BybitRestClientApiTrading.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'BybitRestClientApiTrading.PlaceOrderAsync(Category, string, OrderSide, NewOrderType, decimal, decimal, bool, object, object, object, object, object, TimeInForce, PositionIdx, string, decimal, object, TriggerType, TriggerType, object, object, object, StopLossTakeProfitMode, CancellationToken)'

Check warning on line 703 in ByBit.Net/Clients/V5/BybitRestClientApiTrading.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'BybitRestClientApiTrading.PlaceOrderAsync(Category, string, OrderSide, NewOrderType, decimal, decimal, bool, object, object, object, object, object, TimeInForce, PositionIdx, string, decimal, object, TriggerType, TriggerType, object, object, object, StopLossTakeProfitMode, CancellationToken)'

Check warning on line 703 in ByBit.Net/Clients/V5/BybitRestClientApiTrading.cs

View workflow job for this annotation

GitHub Actions / build

Missing XML comment for publicly visible type or member 'BybitRestClientApiTrading.PlaceOrderAsync(Category, string, OrderSide, NewOrderType, decimal, decimal, bool, object, object, object, object, object, TimeInForce, PositionIdx, string, decimal, object, TriggerType, TriggerType, object, object, object, StopLossTakeProfitMode, CancellationToken)'
{
throw new NotImplementedException();
}

#endregion

#region Purchase Leverage Token
Expand Down
Loading