diff --git a/ts/src/bybit.ts b/ts/src/bybit.ts index d82f1e133649..11fad2aacf0a 100644 --- a/ts/src/bybit.ts +++ b/ts/src/bybit.ts @@ -3282,13 +3282,13 @@ export default class bybit extends Exchange { 'PENDING_CANCEL': 'open', 'PENDING_NEW': 'open', 'REJECTED': 'rejected', - 'PARTIALLY_FILLED_CANCELLED': 'canceled', + 'PARTIALLY_FILLED_CANCELLED': 'closed', // context: https://github.com/ccxt/ccxt/issues/18685 // v3 contract / unified margin / unified account 'Created': 'open', 'New': 'open', 'Rejected': 'rejected', // order is triggered but failed upon being placed 'PartiallyFilled': 'open', - 'PartiallyFilledCanceled': 'canceled', + 'PartiallyFilledCanceled': 'closed', // context: https://github.com/ccxt/ccxt/issues/18685 'Filled': 'closed', 'PendingCancel': 'open', 'Cancelled': 'canceled',