Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonabreul committed Nov 14, 2023
1 parent a7d2d8f commit 03588ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QuantConnect.BybitBrokerage/BybitBrokerage.Messaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,11 @@ private void HandleOrderExecution(JToken message)
var partialFillMessage = string.Empty;
if (status == Orders.OrderStatus.PartiallyFilled)
{
partialFillMessage = $"\nPARTIAL FILL DATA: Partially filled: {accumulatedFilledQuantity + filledQuantity}/{leanOrder.AbsoluteQuantity}";
partialFillMessage = $"PARTIAL FILL DATA: Partially filled: {accumulatedFilledQuantity + filledQuantity}/{leanOrder.AbsoluteQuantity}\n";
}
Log.Trace($"HANDLING EXCECUTION: Order ID: {leanOrder.Id}. Quantity {tradeUpdate.ExecutionQuantity}. \n" +
partialFillMessage +
$"WEBSOCKET MESSAGE DATA: {message["data"][i]}");
$"WEBSOCKET MESSAGE DATA:\n{message["data"][i]}");
i++;

OnOrderEvent(orderEvent);
Expand Down

0 comments on commit 03588ab

Please sign in to comment.