@binance/margin-trading 6.0.3 → 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -947,6 +947,32 @@ interface GetInterestHistoryResponse {
947
947
  total?: number;
948
948
  }
949
949
 
950
+ /**
951
+ * Binance Margin Trading REST API
952
+ *
953
+ * OpenAPI Specification for the Binance Margin Trading REST API
954
+ *
955
+ * The version of the OpenAPI document: 1.0.0
956
+ *
957
+ *
958
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
959
+ * https://openapi-generator.tech
960
+ * Do not edit the class manually.
961
+ */
962
+ /**
963
+ *
964
+ * @export
965
+ * @interface GetLimitPricePairsResponse
966
+ */
967
+ interface GetLimitPricePairsResponse {
968
+ /**
969
+ *
970
+ * @type {Array<string>}
971
+ * @memberof GetLimitPricePairsResponse
972
+ */
973
+ crossMarginSymbols?: Array<string>;
974
+ }
975
+
950
976
  /**
951
977
  * Binance Margin Trading REST API
952
978
  *
@@ -6348,6 +6374,22 @@ interface MarketDataApiInterface {
6348
6374
  * @memberof MarketDataApiInterface
6349
6375
  */
6350
6376
  getDelistSchedule(requestParameters?: GetDelistScheduleRequest): Promise<RestApiResponse<GetDelistScheduleResponse>>;
6377
+ /**
6378
+ * Query trading pairs with restriction on limit price range.
6379
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
6380
+ *
6381
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
6382
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
6383
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
6384
+ *
6385
+ * Weight: 1
6386
+ *
6387
+ * @summary Get Limit Price Pairs(MARKET_DATA)
6388
+ *
6389
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
6390
+ * @memberof MarketDataApiInterface
6391
+ */
6392
+ getLimitPricePairs(): Promise<RestApiResponse<GetLimitPricePairsResponse>>;
6351
6393
  /**
6352
6394
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
6353
6395
  *
@@ -6594,6 +6636,23 @@ declare class MarketDataApi implements MarketDataApiInterface {
6594
6636
  * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Delist-Schedule Binance API Documentation}
6595
6637
  */
6596
6638
  getDelistSchedule(requestParameters?: GetDelistScheduleRequest): Promise<RestApiResponse<GetDelistScheduleResponse>>;
6639
+ /**
6640
+ * Query trading pairs with restriction on limit price range.
6641
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
6642
+ *
6643
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
6644
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
6645
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
6646
+ *
6647
+ * Weight: 1
6648
+ *
6649
+ * @summary Get Limit Price Pairs(MARKET_DATA)
6650
+ * @returns {Promise<RestApiResponse<GetLimitPricePairsResponse>>}
6651
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
6652
+ * @memberof MarketDataApi
6653
+ * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Limit-Price-Pairs Binance API Documentation}
6654
+ */
6655
+ getLimitPricePairs(): Promise<RestApiResponse<GetLimitPricePairsResponse>>;
6597
6656
  /**
6598
6657
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
6599
6658
  *
@@ -9562,6 +9621,22 @@ declare class RestAPI {
9562
9621
  * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Delist-Schedule Binance API Documentation}
9563
9622
  */
9564
9623
  getDelistSchedule(requestParameters?: GetDelistScheduleRequest): Promise<RestApiResponse<GetDelistScheduleResponse>>;
9624
+ /**
9625
+ * Query trading pairs with restriction on limit price range.
9626
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
9627
+ *
9628
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
9629
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
9630
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
9631
+ *
9632
+ * Weight: 1
9633
+ *
9634
+ * @summary Get Limit Price Pairs(MARKET_DATA)
9635
+ * @returns {Promise<RestApiResponse<GetLimitPricePairsResponse>>}
9636
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
9637
+ * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Limit-Price-Pairs Binance API Documentation}
9638
+ */
9639
+ getLimitPricePairs(): Promise<RestApiResponse<GetLimitPricePairsResponse>>;
9565
9640
  /**
9566
9641
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
9567
9642
  *
@@ -10192,6 +10267,7 @@ type index$1_GetFutureHourlyInterestRateResponseInner = GetFutureHourlyInterestR
10192
10267
  type index$1_GetInterestHistoryRequest = GetInterestHistoryRequest;
10193
10268
  type index$1_GetInterestHistoryResponse = GetInterestHistoryResponse;
10194
10269
  type index$1_GetInterestHistoryResponseRowsInner = GetInterestHistoryResponseRowsInner;
10270
+ type index$1_GetLimitPricePairsResponse = GetLimitPricePairsResponse;
10195
10271
  type index$1_GetListScheduleRequest = GetListScheduleRequest;
10196
10272
  type index$1_GetListScheduleResponse = GetListScheduleResponse;
10197
10273
  type index$1_GetListScheduleResponseInner = GetListScheduleResponseInner;
@@ -10344,7 +10420,7 @@ type index$1_TransferApi = TransferApi;
10344
10420
  declare const index$1_TransferApi: typeof TransferApi;
10345
10421
  type index$1_TransferApiInterface = TransferApiInterface;
10346
10422
  declare namespace index$1 {
10347
- export { index$1_AccountApi as AccountApi, type index$1_AccountApiInterface as AccountApiInterface, type index$1_AdjustCrossMarginMaxLeverageRequest as AdjustCrossMarginMaxLeverageRequest, type index$1_AdjustCrossMarginMaxLeverageResponse as AdjustCrossMarginMaxLeverageResponse, index$1_BorrowRepayApi as BorrowRepayApi, type index$1_BorrowRepayApiInterface as BorrowRepayApiInterface, type index$1_CloseIsolatedMarginUserDataStreamRequest as CloseIsolatedMarginUserDataStreamRequest, type index$1_CloseMarginUserDataStreamRequest as CloseMarginUserDataStreamRequest, type index$1_CreateSpecialKeyRequest as CreateSpecialKeyRequest, type index$1_CreateSpecialKeyResponse as CreateSpecialKeyResponse, type index$1_CrossMarginCollateralRatioResponse as CrossMarginCollateralRatioResponse, type index$1_CrossMarginCollateralRatioResponseInner as CrossMarginCollateralRatioResponseInner, type index$1_CrossMarginCollateralRatioResponseInnerCollateralsInner as CrossMarginCollateralRatioResponseInnerCollateralsInner, type index$1_DeleteSpecialKeyRequest as DeleteSpecialKeyRequest, type index$1_DisableIsolatedMarginAccountRequest as DisableIsolatedMarginAccountRequest, type index$1_DisableIsolatedMarginAccountResponse as DisableIsolatedMarginAccountResponse, type index$1_EditIpForSpecialKeyRequest as EditIpForSpecialKeyRequest, type index$1_EnableIsolatedMarginAccountRequest as EnableIsolatedMarginAccountRequest, type index$1_EnableIsolatedMarginAccountResponse as EnableIsolatedMarginAccountResponse, type index$1_GetAllCrossMarginPairsRequest as GetAllCrossMarginPairsRequest, type index$1_GetAllCrossMarginPairsResponse as GetAllCrossMarginPairsResponse, type index$1_GetAllCrossMarginPairsResponseInner as GetAllCrossMarginPairsResponseInner, type index$1_GetAllIsolatedMarginSymbolRequest as GetAllIsolatedMarginSymbolRequest, type index$1_GetAllIsolatedMarginSymbolResponse as GetAllIsolatedMarginSymbolResponse, type index$1_GetAllIsolatedMarginSymbolResponseInner as GetAllIsolatedMarginSymbolResponseInner, type index$1_GetAllMarginAssetsRequest as GetAllMarginAssetsRequest, type index$1_GetAllMarginAssetsResponse as GetAllMarginAssetsResponse, type index$1_GetAllMarginAssetsResponseInner as GetAllMarginAssetsResponseInner, type index$1_GetBnbBurnStatusRequest as GetBnbBurnStatusRequest, type index$1_GetBnbBurnStatusResponse as GetBnbBurnStatusResponse, type index$1_GetCrossMarginTransferHistoryRequest as GetCrossMarginTransferHistoryRequest, type index$1_GetCrossMarginTransferHistoryResponse as GetCrossMarginTransferHistoryResponse, type index$1_GetCrossMarginTransferHistoryResponseRowsInner as GetCrossMarginTransferHistoryResponseRowsInner, type index$1_GetDelistScheduleRequest as GetDelistScheduleRequest, type index$1_GetDelistScheduleResponse as GetDelistScheduleResponse, type index$1_GetDelistScheduleResponseInner as GetDelistScheduleResponseInner, type index$1_GetForceLiquidationRecordRequest as GetForceLiquidationRecordRequest, type index$1_GetForceLiquidationRecordResponse as GetForceLiquidationRecordResponse, type index$1_GetForceLiquidationRecordResponseRowsInner as GetForceLiquidationRecordResponseRowsInner, type index$1_GetFutureHourlyInterestRateRequest as GetFutureHourlyInterestRateRequest, type index$1_GetFutureHourlyInterestRateResponse as GetFutureHourlyInterestRateResponse, type index$1_GetFutureHourlyInterestRateResponseInner as GetFutureHourlyInterestRateResponseInner, type index$1_GetInterestHistoryRequest as GetInterestHistoryRequest, type index$1_GetInterestHistoryResponse as GetInterestHistoryResponse, type index$1_GetInterestHistoryResponseRowsInner as GetInterestHistoryResponseRowsInner, type index$1_GetListScheduleRequest as GetListScheduleRequest, type index$1_GetListScheduleResponse as GetListScheduleResponse, type index$1_GetListScheduleResponseInner as GetListScheduleResponseInner, type index$1_GetSmallLiabilityExchangeCoinListRequest as GetSmallLiabilityExchangeCoinListRequest, type index$1_GetSmallLiabilityExchangeCoinListResponse as GetSmallLiabilityExchangeCoinListResponse, type index$1_GetSmallLiabilityExchangeCoinListResponseInner as GetSmallLiabilityExchangeCoinListResponseInner, type index$1_GetSmallLiabilityExchangeHistoryRequest as GetSmallLiabilityExchangeHistoryRequest, type index$1_GetSmallLiabilityExchangeHistoryResponse as GetSmallLiabilityExchangeHistoryResponse, type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner as GetSmallLiabilityExchangeHistoryResponseRowsInner, type index$1_GetSummaryOfMarginAccountRequest as GetSummaryOfMarginAccountRequest, type index$1_GetSummaryOfMarginAccountResponse as GetSummaryOfMarginAccountResponse, type index$1_KeepaliveIsolatedMarginUserDataStreamRequest as KeepaliveIsolatedMarginUserDataStreamRequest, type index$1_KeepaliveMarginUserDataStreamRequest as KeepaliveMarginUserDataStreamRequest, type index$1_KeepaliveUserDataStreamRequest as KeepaliveUserDataStreamRequest, type index$1_MarginAccountBorrowRepayRequest as MarginAccountBorrowRepayRequest, type index$1_MarginAccountBorrowRepayResponse as MarginAccountBorrowRepayResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolRequest as MarginAccountCancelAllOpenOrdersOnASymbolRequest, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponse as MarginAccountCancelAllOpenOrdersOnASymbolResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner, type index$1_MarginAccountCancelOcoRequest as MarginAccountCancelOcoRequest, type index$1_MarginAccountCancelOcoResponse as MarginAccountCancelOcoResponse, type index$1_MarginAccountCancelOcoResponseOrderReportsInner as MarginAccountCancelOcoResponseOrderReportsInner, type index$1_MarginAccountCancelOcoResponseOrdersInner as MarginAccountCancelOcoResponseOrdersInner, type index$1_MarginAccountCancelOrderRequest as MarginAccountCancelOrderRequest, type index$1_MarginAccountCancelOrderResponse as MarginAccountCancelOrderResponse, index$1_MarginAccountNewOcoNewOrderRespTypeEnum as MarginAccountNewOcoNewOrderRespTypeEnum, type index$1_MarginAccountNewOcoRequest as MarginAccountNewOcoRequest, type index$1_MarginAccountNewOcoResponse as MarginAccountNewOcoResponse, type index$1_MarginAccountNewOcoResponseOrderReportsInner as MarginAccountNewOcoResponseOrderReportsInner, type index$1_MarginAccountNewOcoResponseOrdersInner as MarginAccountNewOcoResponseOrdersInner, index$1_MarginAccountNewOcoSideEnum as MarginAccountNewOcoSideEnum, index$1_MarginAccountNewOrderNewOrderRespTypeEnum as MarginAccountNewOrderNewOrderRespTypeEnum, type index$1_MarginAccountNewOrderRequest as MarginAccountNewOrderRequest, type index$1_MarginAccountNewOrderResponse as MarginAccountNewOrderResponse, type index$1_MarginAccountNewOrderResponseFillsInner as MarginAccountNewOrderResponseFillsInner, index$1_MarginAccountNewOrderSideEnum as MarginAccountNewOrderSideEnum, index$1_MarginAccountNewOrderTimeInForceEnum as MarginAccountNewOrderTimeInForceEnum, index$1_MarginAccountNewOtoNewOrderRespTypeEnum as MarginAccountNewOtoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtoRequest as MarginAccountNewOtoRequest, type index$1_MarginAccountNewOtoResponse as MarginAccountNewOtoResponse, type index$1_MarginAccountNewOtoResponseOrderReportsInner as MarginAccountNewOtoResponseOrderReportsInner, type index$1_MarginAccountNewOtoResponseOrdersInner as MarginAccountNewOtoResponseOrdersInner, index$1_MarginAccountNewOtocoNewOrderRespTypeEnum as MarginAccountNewOtocoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtocoRequest as MarginAccountNewOtocoRequest, type index$1_MarginAccountNewOtocoResponse as MarginAccountNewOtocoResponse, type index$1_MarginAccountNewOtocoResponseOrderReportsInner as MarginAccountNewOtocoResponseOrderReportsInner, type index$1_MarginAccountNewOtocoResponseOrdersInner as MarginAccountNewOtocoResponseOrdersInner, type index$1_MarginManualLiquidationRequest as MarginManualLiquidationRequest, type index$1_MarginManualLiquidationResponse as MarginManualLiquidationResponse, index$1_MarketDataApi as MarketDataApi, type index$1_MarketDataApiInterface as MarketDataApiInterface, type index$1_QueryBorrowRepayRecordsInMarginAccountRequest as QueryBorrowRepayRecordsInMarginAccountRequest, type index$1_QueryBorrowRepayRecordsInMarginAccountResponse as QueryBorrowRepayRecordsInMarginAccountResponse, type index$1_QueryBorrowRepayRecordsInMarginAccountResponseRowsInner as QueryBorrowRepayRecordsInMarginAccountResponseRowsInner, type index$1_QueryCrossIsolatedMarginCapitalFlowRequest as QueryCrossIsolatedMarginCapitalFlowRequest, type index$1_QueryCrossIsolatedMarginCapitalFlowResponse as QueryCrossIsolatedMarginCapitalFlowResponse, type index$1_QueryCrossIsolatedMarginCapitalFlowResponseInner as QueryCrossIsolatedMarginCapitalFlowResponseInner, type index$1_QueryCrossMarginAccountDetailsRequest as QueryCrossMarginAccountDetailsRequest, type index$1_QueryCrossMarginAccountDetailsResponse as QueryCrossMarginAccountDetailsResponse, type index$1_QueryCrossMarginAccountDetailsResponseUserAssetsInner as QueryCrossMarginAccountDetailsResponseUserAssetsInner, type index$1_QueryCrossMarginFeeDataRequest as QueryCrossMarginFeeDataRequest, type index$1_QueryCrossMarginFeeDataResponse as QueryCrossMarginFeeDataResponse, type index$1_QueryCrossMarginFeeDataResponseInner as QueryCrossMarginFeeDataResponseInner, type index$1_QueryCurrentMarginOrderCountUsageRequest as QueryCurrentMarginOrderCountUsageRequest, type index$1_QueryCurrentMarginOrderCountUsageResponse as QueryCurrentMarginOrderCountUsageResponse, type index$1_QueryCurrentMarginOrderCountUsageResponseInner as QueryCurrentMarginOrderCountUsageResponseInner, type index$1_QueryEnabledIsolatedMarginAccountLimitRequest as QueryEnabledIsolatedMarginAccountLimitRequest, type index$1_QueryEnabledIsolatedMarginAccountLimitResponse as QueryEnabledIsolatedMarginAccountLimitResponse, type index$1_QueryIsolatedMarginAccountInfoRequest as QueryIsolatedMarginAccountInfoRequest, type index$1_QueryIsolatedMarginAccountInfoResponse as QueryIsolatedMarginAccountInfoResponse, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInner as QueryIsolatedMarginAccountInfoResponseAssetsInner, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset, type index$1_QueryIsolatedMarginFeeDataRequest as QueryIsolatedMarginFeeDataRequest, type index$1_QueryIsolatedMarginFeeDataResponse as QueryIsolatedMarginFeeDataResponse, type index$1_QueryIsolatedMarginFeeDataResponseInner as QueryIsolatedMarginFeeDataResponseInner, type index$1_QueryIsolatedMarginFeeDataResponseInnerDataInner as QueryIsolatedMarginFeeDataResponseInnerDataInner, type index$1_QueryIsolatedMarginTierDataRequest as QueryIsolatedMarginTierDataRequest, type index$1_QueryIsolatedMarginTierDataResponse as QueryIsolatedMarginTierDataResponse, type index$1_QueryIsolatedMarginTierDataResponseInner as QueryIsolatedMarginTierDataResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner, type index$1_QueryMarginAccountsAllOcoRequest as QueryMarginAccountsAllOcoRequest, type index$1_QueryMarginAccountsAllOcoResponse as QueryMarginAccountsAllOcoResponse, type index$1_QueryMarginAccountsAllOcoResponseInner as QueryMarginAccountsAllOcoResponseInner, type index$1_QueryMarginAccountsAllOcoResponseInnerOrdersInner as QueryMarginAccountsAllOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsAllOrdersRequest as QueryMarginAccountsAllOrdersRequest, type index$1_QueryMarginAccountsAllOrdersResponse as QueryMarginAccountsAllOrdersResponse, type index$1_QueryMarginAccountsAllOrdersResponseInner as QueryMarginAccountsAllOrdersResponseInner, type index$1_QueryMarginAccountsOcoRequest as QueryMarginAccountsOcoRequest, type index$1_QueryMarginAccountsOcoResponse as QueryMarginAccountsOcoResponse, type index$1_QueryMarginAccountsOcoResponseOrdersInner as QueryMarginAccountsOcoResponseOrdersInner, type index$1_QueryMarginAccountsOpenOcoRequest as QueryMarginAccountsOpenOcoRequest, type index$1_QueryMarginAccountsOpenOcoResponse as QueryMarginAccountsOpenOcoResponse, type index$1_QueryMarginAccountsOpenOcoResponseInner as QueryMarginAccountsOpenOcoResponseInner, type index$1_QueryMarginAccountsOpenOcoResponseInnerOrdersInner as QueryMarginAccountsOpenOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsOpenOrdersRequest as QueryMarginAccountsOpenOrdersRequest, type index$1_QueryMarginAccountsOpenOrdersResponse as QueryMarginAccountsOpenOrdersResponse, type index$1_QueryMarginAccountsOpenOrdersResponseInner as QueryMarginAccountsOpenOrdersResponseInner, type index$1_QueryMarginAccountsOrderRequest as QueryMarginAccountsOrderRequest, type index$1_QueryMarginAccountsOrderResponse as QueryMarginAccountsOrderResponse, type index$1_QueryMarginAccountsTradeListRequest as QueryMarginAccountsTradeListRequest, type index$1_QueryMarginAccountsTradeListResponse as QueryMarginAccountsTradeListResponse, type index$1_QueryMarginAccountsTradeListResponseInner as QueryMarginAccountsTradeListResponseInner, type index$1_QueryMarginAvailableInventoryRequest as QueryMarginAvailableInventoryRequest, type index$1_QueryMarginAvailableInventoryResponse as QueryMarginAvailableInventoryResponse, type index$1_QueryMarginAvailableInventoryResponseAssets as QueryMarginAvailableInventoryResponseAssets, type index$1_QueryMarginInterestRateHistoryRequest as QueryMarginInterestRateHistoryRequest, type index$1_QueryMarginInterestRateHistoryResponse as QueryMarginInterestRateHistoryResponse, type index$1_QueryMarginInterestRateHistoryResponseInner as QueryMarginInterestRateHistoryResponseInner, type index$1_QueryMarginPriceindexRequest as QueryMarginPriceindexRequest, type index$1_QueryMarginPriceindexResponse as QueryMarginPriceindexResponse, type index$1_QueryMaxBorrowRequest as QueryMaxBorrowRequest, type index$1_QueryMaxBorrowResponse as QueryMaxBorrowResponse, type index$1_QueryMaxTransferOutAmountRequest as QueryMaxTransferOutAmountRequest, type index$1_QueryMaxTransferOutAmountResponse as QueryMaxTransferOutAmountResponse, type index$1_QuerySpecialKeyListRequest as QuerySpecialKeyListRequest, type index$1_QuerySpecialKeyListResponse as QuerySpecialKeyListResponse, type index$1_QuerySpecialKeyListResponseInner as QuerySpecialKeyListResponseInner, type index$1_QuerySpecialKeyRequest as QuerySpecialKeyRequest, type index$1_QuerySpecialKeyResponse as QuerySpecialKeyResponse, index$1_RestAPI as RestAPI, index$1_RiskDataStreamApi as RiskDataStreamApi, type index$1_RiskDataStreamApiInterface as RiskDataStreamApiInterface, type index$1_SmallLiabilityExchangeRequest as SmallLiabilityExchangeRequest, type index$1_StartIsolatedMarginUserDataStreamRequest as StartIsolatedMarginUserDataStreamRequest, type index$1_StartIsolatedMarginUserDataStreamResponse as StartIsolatedMarginUserDataStreamResponse, type index$1_StartMarginUserDataStreamResponse as StartMarginUserDataStreamResponse, type index$1_StartUserDataStreamResponse as StartUserDataStreamResponse, index$1_TradeApi as TradeApi, type index$1_TradeApiInterface as TradeApiInterface, index$1_TradeDataStreamApi as TradeDataStreamApi, type index$1_TradeDataStreamApiInterface as TradeDataStreamApiInterface, index$1_TransferApi as TransferApi, type index$1_TransferApiInterface as TransferApiInterface };
10423
+ export { index$1_AccountApi as AccountApi, type index$1_AccountApiInterface as AccountApiInterface, type index$1_AdjustCrossMarginMaxLeverageRequest as AdjustCrossMarginMaxLeverageRequest, type index$1_AdjustCrossMarginMaxLeverageResponse as AdjustCrossMarginMaxLeverageResponse, index$1_BorrowRepayApi as BorrowRepayApi, type index$1_BorrowRepayApiInterface as BorrowRepayApiInterface, type index$1_CloseIsolatedMarginUserDataStreamRequest as CloseIsolatedMarginUserDataStreamRequest, type index$1_CloseMarginUserDataStreamRequest as CloseMarginUserDataStreamRequest, type index$1_CreateSpecialKeyRequest as CreateSpecialKeyRequest, type index$1_CreateSpecialKeyResponse as CreateSpecialKeyResponse, type index$1_CrossMarginCollateralRatioResponse as CrossMarginCollateralRatioResponse, type index$1_CrossMarginCollateralRatioResponseInner as CrossMarginCollateralRatioResponseInner, type index$1_CrossMarginCollateralRatioResponseInnerCollateralsInner as CrossMarginCollateralRatioResponseInnerCollateralsInner, type index$1_DeleteSpecialKeyRequest as DeleteSpecialKeyRequest, type index$1_DisableIsolatedMarginAccountRequest as DisableIsolatedMarginAccountRequest, type index$1_DisableIsolatedMarginAccountResponse as DisableIsolatedMarginAccountResponse, type index$1_EditIpForSpecialKeyRequest as EditIpForSpecialKeyRequest, type index$1_EnableIsolatedMarginAccountRequest as EnableIsolatedMarginAccountRequest, type index$1_EnableIsolatedMarginAccountResponse as EnableIsolatedMarginAccountResponse, type index$1_GetAllCrossMarginPairsRequest as GetAllCrossMarginPairsRequest, type index$1_GetAllCrossMarginPairsResponse as GetAllCrossMarginPairsResponse, type index$1_GetAllCrossMarginPairsResponseInner as GetAllCrossMarginPairsResponseInner, type index$1_GetAllIsolatedMarginSymbolRequest as GetAllIsolatedMarginSymbolRequest, type index$1_GetAllIsolatedMarginSymbolResponse as GetAllIsolatedMarginSymbolResponse, type index$1_GetAllIsolatedMarginSymbolResponseInner as GetAllIsolatedMarginSymbolResponseInner, type index$1_GetAllMarginAssetsRequest as GetAllMarginAssetsRequest, type index$1_GetAllMarginAssetsResponse as GetAllMarginAssetsResponse, type index$1_GetAllMarginAssetsResponseInner as GetAllMarginAssetsResponseInner, type index$1_GetBnbBurnStatusRequest as GetBnbBurnStatusRequest, type index$1_GetBnbBurnStatusResponse as GetBnbBurnStatusResponse, type index$1_GetCrossMarginTransferHistoryRequest as GetCrossMarginTransferHistoryRequest, type index$1_GetCrossMarginTransferHistoryResponse as GetCrossMarginTransferHistoryResponse, type index$1_GetCrossMarginTransferHistoryResponseRowsInner as GetCrossMarginTransferHistoryResponseRowsInner, type index$1_GetDelistScheduleRequest as GetDelistScheduleRequest, type index$1_GetDelistScheduleResponse as GetDelistScheduleResponse, type index$1_GetDelistScheduleResponseInner as GetDelistScheduleResponseInner, type index$1_GetForceLiquidationRecordRequest as GetForceLiquidationRecordRequest, type index$1_GetForceLiquidationRecordResponse as GetForceLiquidationRecordResponse, type index$1_GetForceLiquidationRecordResponseRowsInner as GetForceLiquidationRecordResponseRowsInner, type index$1_GetFutureHourlyInterestRateRequest as GetFutureHourlyInterestRateRequest, type index$1_GetFutureHourlyInterestRateResponse as GetFutureHourlyInterestRateResponse, type index$1_GetFutureHourlyInterestRateResponseInner as GetFutureHourlyInterestRateResponseInner, type index$1_GetInterestHistoryRequest as GetInterestHistoryRequest, type index$1_GetInterestHistoryResponse as GetInterestHistoryResponse, type index$1_GetInterestHistoryResponseRowsInner as GetInterestHistoryResponseRowsInner, type index$1_GetLimitPricePairsResponse as GetLimitPricePairsResponse, type index$1_GetListScheduleRequest as GetListScheduleRequest, type index$1_GetListScheduleResponse as GetListScheduleResponse, type index$1_GetListScheduleResponseInner as GetListScheduleResponseInner, type index$1_GetSmallLiabilityExchangeCoinListRequest as GetSmallLiabilityExchangeCoinListRequest, type index$1_GetSmallLiabilityExchangeCoinListResponse as GetSmallLiabilityExchangeCoinListResponse, type index$1_GetSmallLiabilityExchangeCoinListResponseInner as GetSmallLiabilityExchangeCoinListResponseInner, type index$1_GetSmallLiabilityExchangeHistoryRequest as GetSmallLiabilityExchangeHistoryRequest, type index$1_GetSmallLiabilityExchangeHistoryResponse as GetSmallLiabilityExchangeHistoryResponse, type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner as GetSmallLiabilityExchangeHistoryResponseRowsInner, type index$1_GetSummaryOfMarginAccountRequest as GetSummaryOfMarginAccountRequest, type index$1_GetSummaryOfMarginAccountResponse as GetSummaryOfMarginAccountResponse, type index$1_KeepaliveIsolatedMarginUserDataStreamRequest as KeepaliveIsolatedMarginUserDataStreamRequest, type index$1_KeepaliveMarginUserDataStreamRequest as KeepaliveMarginUserDataStreamRequest, type index$1_KeepaliveUserDataStreamRequest as KeepaliveUserDataStreamRequest, type index$1_MarginAccountBorrowRepayRequest as MarginAccountBorrowRepayRequest, type index$1_MarginAccountBorrowRepayResponse as MarginAccountBorrowRepayResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolRequest as MarginAccountCancelAllOpenOrdersOnASymbolRequest, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponse as MarginAccountCancelAllOpenOrdersOnASymbolResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner, type index$1_MarginAccountCancelOcoRequest as MarginAccountCancelOcoRequest, type index$1_MarginAccountCancelOcoResponse as MarginAccountCancelOcoResponse, type index$1_MarginAccountCancelOcoResponseOrderReportsInner as MarginAccountCancelOcoResponseOrderReportsInner, type index$1_MarginAccountCancelOcoResponseOrdersInner as MarginAccountCancelOcoResponseOrdersInner, type index$1_MarginAccountCancelOrderRequest as MarginAccountCancelOrderRequest, type index$1_MarginAccountCancelOrderResponse as MarginAccountCancelOrderResponse, index$1_MarginAccountNewOcoNewOrderRespTypeEnum as MarginAccountNewOcoNewOrderRespTypeEnum, type index$1_MarginAccountNewOcoRequest as MarginAccountNewOcoRequest, type index$1_MarginAccountNewOcoResponse as MarginAccountNewOcoResponse, type index$1_MarginAccountNewOcoResponseOrderReportsInner as MarginAccountNewOcoResponseOrderReportsInner, type index$1_MarginAccountNewOcoResponseOrdersInner as MarginAccountNewOcoResponseOrdersInner, index$1_MarginAccountNewOcoSideEnum as MarginAccountNewOcoSideEnum, index$1_MarginAccountNewOrderNewOrderRespTypeEnum as MarginAccountNewOrderNewOrderRespTypeEnum, type index$1_MarginAccountNewOrderRequest as MarginAccountNewOrderRequest, type index$1_MarginAccountNewOrderResponse as MarginAccountNewOrderResponse, type index$1_MarginAccountNewOrderResponseFillsInner as MarginAccountNewOrderResponseFillsInner, index$1_MarginAccountNewOrderSideEnum as MarginAccountNewOrderSideEnum, index$1_MarginAccountNewOrderTimeInForceEnum as MarginAccountNewOrderTimeInForceEnum, index$1_MarginAccountNewOtoNewOrderRespTypeEnum as MarginAccountNewOtoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtoRequest as MarginAccountNewOtoRequest, type index$1_MarginAccountNewOtoResponse as MarginAccountNewOtoResponse, type index$1_MarginAccountNewOtoResponseOrderReportsInner as MarginAccountNewOtoResponseOrderReportsInner, type index$1_MarginAccountNewOtoResponseOrdersInner as MarginAccountNewOtoResponseOrdersInner, index$1_MarginAccountNewOtocoNewOrderRespTypeEnum as MarginAccountNewOtocoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtocoRequest as MarginAccountNewOtocoRequest, type index$1_MarginAccountNewOtocoResponse as MarginAccountNewOtocoResponse, type index$1_MarginAccountNewOtocoResponseOrderReportsInner as MarginAccountNewOtocoResponseOrderReportsInner, type index$1_MarginAccountNewOtocoResponseOrdersInner as MarginAccountNewOtocoResponseOrdersInner, type index$1_MarginManualLiquidationRequest as MarginManualLiquidationRequest, type index$1_MarginManualLiquidationResponse as MarginManualLiquidationResponse, index$1_MarketDataApi as MarketDataApi, type index$1_MarketDataApiInterface as MarketDataApiInterface, type index$1_QueryBorrowRepayRecordsInMarginAccountRequest as QueryBorrowRepayRecordsInMarginAccountRequest, type index$1_QueryBorrowRepayRecordsInMarginAccountResponse as QueryBorrowRepayRecordsInMarginAccountResponse, type index$1_QueryBorrowRepayRecordsInMarginAccountResponseRowsInner as QueryBorrowRepayRecordsInMarginAccountResponseRowsInner, type index$1_QueryCrossIsolatedMarginCapitalFlowRequest as QueryCrossIsolatedMarginCapitalFlowRequest, type index$1_QueryCrossIsolatedMarginCapitalFlowResponse as QueryCrossIsolatedMarginCapitalFlowResponse, type index$1_QueryCrossIsolatedMarginCapitalFlowResponseInner as QueryCrossIsolatedMarginCapitalFlowResponseInner, type index$1_QueryCrossMarginAccountDetailsRequest as QueryCrossMarginAccountDetailsRequest, type index$1_QueryCrossMarginAccountDetailsResponse as QueryCrossMarginAccountDetailsResponse, type index$1_QueryCrossMarginAccountDetailsResponseUserAssetsInner as QueryCrossMarginAccountDetailsResponseUserAssetsInner, type index$1_QueryCrossMarginFeeDataRequest as QueryCrossMarginFeeDataRequest, type index$1_QueryCrossMarginFeeDataResponse as QueryCrossMarginFeeDataResponse, type index$1_QueryCrossMarginFeeDataResponseInner as QueryCrossMarginFeeDataResponseInner, type index$1_QueryCurrentMarginOrderCountUsageRequest as QueryCurrentMarginOrderCountUsageRequest, type index$1_QueryCurrentMarginOrderCountUsageResponse as QueryCurrentMarginOrderCountUsageResponse, type index$1_QueryCurrentMarginOrderCountUsageResponseInner as QueryCurrentMarginOrderCountUsageResponseInner, type index$1_QueryEnabledIsolatedMarginAccountLimitRequest as QueryEnabledIsolatedMarginAccountLimitRequest, type index$1_QueryEnabledIsolatedMarginAccountLimitResponse as QueryEnabledIsolatedMarginAccountLimitResponse, type index$1_QueryIsolatedMarginAccountInfoRequest as QueryIsolatedMarginAccountInfoRequest, type index$1_QueryIsolatedMarginAccountInfoResponse as QueryIsolatedMarginAccountInfoResponse, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInner as QueryIsolatedMarginAccountInfoResponseAssetsInner, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset, type index$1_QueryIsolatedMarginFeeDataRequest as QueryIsolatedMarginFeeDataRequest, type index$1_QueryIsolatedMarginFeeDataResponse as QueryIsolatedMarginFeeDataResponse, type index$1_QueryIsolatedMarginFeeDataResponseInner as QueryIsolatedMarginFeeDataResponseInner, type index$1_QueryIsolatedMarginFeeDataResponseInnerDataInner as QueryIsolatedMarginFeeDataResponseInnerDataInner, type index$1_QueryIsolatedMarginTierDataRequest as QueryIsolatedMarginTierDataRequest, type index$1_QueryIsolatedMarginTierDataResponse as QueryIsolatedMarginTierDataResponse, type index$1_QueryIsolatedMarginTierDataResponseInner as QueryIsolatedMarginTierDataResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner, type index$1_QueryMarginAccountsAllOcoRequest as QueryMarginAccountsAllOcoRequest, type index$1_QueryMarginAccountsAllOcoResponse as QueryMarginAccountsAllOcoResponse, type index$1_QueryMarginAccountsAllOcoResponseInner as QueryMarginAccountsAllOcoResponseInner, type index$1_QueryMarginAccountsAllOcoResponseInnerOrdersInner as QueryMarginAccountsAllOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsAllOrdersRequest as QueryMarginAccountsAllOrdersRequest, type index$1_QueryMarginAccountsAllOrdersResponse as QueryMarginAccountsAllOrdersResponse, type index$1_QueryMarginAccountsAllOrdersResponseInner as QueryMarginAccountsAllOrdersResponseInner, type index$1_QueryMarginAccountsOcoRequest as QueryMarginAccountsOcoRequest, type index$1_QueryMarginAccountsOcoResponse as QueryMarginAccountsOcoResponse, type index$1_QueryMarginAccountsOcoResponseOrdersInner as QueryMarginAccountsOcoResponseOrdersInner, type index$1_QueryMarginAccountsOpenOcoRequest as QueryMarginAccountsOpenOcoRequest, type index$1_QueryMarginAccountsOpenOcoResponse as QueryMarginAccountsOpenOcoResponse, type index$1_QueryMarginAccountsOpenOcoResponseInner as QueryMarginAccountsOpenOcoResponseInner, type index$1_QueryMarginAccountsOpenOcoResponseInnerOrdersInner as QueryMarginAccountsOpenOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsOpenOrdersRequest as QueryMarginAccountsOpenOrdersRequest, type index$1_QueryMarginAccountsOpenOrdersResponse as QueryMarginAccountsOpenOrdersResponse, type index$1_QueryMarginAccountsOpenOrdersResponseInner as QueryMarginAccountsOpenOrdersResponseInner, type index$1_QueryMarginAccountsOrderRequest as QueryMarginAccountsOrderRequest, type index$1_QueryMarginAccountsOrderResponse as QueryMarginAccountsOrderResponse, type index$1_QueryMarginAccountsTradeListRequest as QueryMarginAccountsTradeListRequest, type index$1_QueryMarginAccountsTradeListResponse as QueryMarginAccountsTradeListResponse, type index$1_QueryMarginAccountsTradeListResponseInner as QueryMarginAccountsTradeListResponseInner, type index$1_QueryMarginAvailableInventoryRequest as QueryMarginAvailableInventoryRequest, type index$1_QueryMarginAvailableInventoryResponse as QueryMarginAvailableInventoryResponse, type index$1_QueryMarginAvailableInventoryResponseAssets as QueryMarginAvailableInventoryResponseAssets, type index$1_QueryMarginInterestRateHistoryRequest as QueryMarginInterestRateHistoryRequest, type index$1_QueryMarginInterestRateHistoryResponse as QueryMarginInterestRateHistoryResponse, type index$1_QueryMarginInterestRateHistoryResponseInner as QueryMarginInterestRateHistoryResponseInner, type index$1_QueryMarginPriceindexRequest as QueryMarginPriceindexRequest, type index$1_QueryMarginPriceindexResponse as QueryMarginPriceindexResponse, type index$1_QueryMaxBorrowRequest as QueryMaxBorrowRequest, type index$1_QueryMaxBorrowResponse as QueryMaxBorrowResponse, type index$1_QueryMaxTransferOutAmountRequest as QueryMaxTransferOutAmountRequest, type index$1_QueryMaxTransferOutAmountResponse as QueryMaxTransferOutAmountResponse, type index$1_QuerySpecialKeyListRequest as QuerySpecialKeyListRequest, type index$1_QuerySpecialKeyListResponse as QuerySpecialKeyListResponse, type index$1_QuerySpecialKeyListResponseInner as QuerySpecialKeyListResponseInner, type index$1_QuerySpecialKeyRequest as QuerySpecialKeyRequest, type index$1_QuerySpecialKeyResponse as QuerySpecialKeyResponse, index$1_RestAPI as RestAPI, index$1_RiskDataStreamApi as RiskDataStreamApi, type index$1_RiskDataStreamApiInterface as RiskDataStreamApiInterface, type index$1_SmallLiabilityExchangeRequest as SmallLiabilityExchangeRequest, type index$1_StartIsolatedMarginUserDataStreamRequest as StartIsolatedMarginUserDataStreamRequest, type index$1_StartIsolatedMarginUserDataStreamResponse as StartIsolatedMarginUserDataStreamResponse, type index$1_StartMarginUserDataStreamResponse as StartMarginUserDataStreamResponse, type index$1_StartUserDataStreamResponse as StartUserDataStreamResponse, index$1_TradeApi as TradeApi, type index$1_TradeApiInterface as TradeApiInterface, index$1_TradeDataStreamApi as TradeDataStreamApi, type index$1_TradeDataStreamApiInterface as TradeDataStreamApiInterface, index$1_TransferApi as TransferApi, type index$1_TransferApiInterface as TransferApiInterface };
10348
10424
  }
10349
10425
 
10350
10426
  /**
package/dist/index.d.ts CHANGED
@@ -947,6 +947,32 @@ interface GetInterestHistoryResponse {
947
947
  total?: number;
948
948
  }
949
949
 
950
+ /**
951
+ * Binance Margin Trading REST API
952
+ *
953
+ * OpenAPI Specification for the Binance Margin Trading REST API
954
+ *
955
+ * The version of the OpenAPI document: 1.0.0
956
+ *
957
+ *
958
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
959
+ * https://openapi-generator.tech
960
+ * Do not edit the class manually.
961
+ */
962
+ /**
963
+ *
964
+ * @export
965
+ * @interface GetLimitPricePairsResponse
966
+ */
967
+ interface GetLimitPricePairsResponse {
968
+ /**
969
+ *
970
+ * @type {Array<string>}
971
+ * @memberof GetLimitPricePairsResponse
972
+ */
973
+ crossMarginSymbols?: Array<string>;
974
+ }
975
+
950
976
  /**
951
977
  * Binance Margin Trading REST API
952
978
  *
@@ -6348,6 +6374,22 @@ interface MarketDataApiInterface {
6348
6374
  * @memberof MarketDataApiInterface
6349
6375
  */
6350
6376
  getDelistSchedule(requestParameters?: GetDelistScheduleRequest): Promise<RestApiResponse<GetDelistScheduleResponse>>;
6377
+ /**
6378
+ * Query trading pairs with restriction on limit price range.
6379
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
6380
+ *
6381
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
6382
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
6383
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
6384
+ *
6385
+ * Weight: 1
6386
+ *
6387
+ * @summary Get Limit Price Pairs(MARKET_DATA)
6388
+ *
6389
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
6390
+ * @memberof MarketDataApiInterface
6391
+ */
6392
+ getLimitPricePairs(): Promise<RestApiResponse<GetLimitPricePairsResponse>>;
6351
6393
  /**
6352
6394
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
6353
6395
  *
@@ -6594,6 +6636,23 @@ declare class MarketDataApi implements MarketDataApiInterface {
6594
6636
  * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Delist-Schedule Binance API Documentation}
6595
6637
  */
6596
6638
  getDelistSchedule(requestParameters?: GetDelistScheduleRequest): Promise<RestApiResponse<GetDelistScheduleResponse>>;
6639
+ /**
6640
+ * Query trading pairs with restriction on limit price range.
6641
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
6642
+ *
6643
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
6644
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
6645
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
6646
+ *
6647
+ * Weight: 1
6648
+ *
6649
+ * @summary Get Limit Price Pairs(MARKET_DATA)
6650
+ * @returns {Promise<RestApiResponse<GetLimitPricePairsResponse>>}
6651
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
6652
+ * @memberof MarketDataApi
6653
+ * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Limit-Price-Pairs Binance API Documentation}
6654
+ */
6655
+ getLimitPricePairs(): Promise<RestApiResponse<GetLimitPricePairsResponse>>;
6597
6656
  /**
6598
6657
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
6599
6658
  *
@@ -9562,6 +9621,22 @@ declare class RestAPI {
9562
9621
  * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Delist-Schedule Binance API Documentation}
9563
9622
  */
9564
9623
  getDelistSchedule(requestParameters?: GetDelistScheduleRequest): Promise<RestApiResponse<GetDelistScheduleResponse>>;
9624
+ /**
9625
+ * Query trading pairs with restriction on limit price range.
9626
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
9627
+ *
9628
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
9629
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
9630
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
9631
+ *
9632
+ * Weight: 1
9633
+ *
9634
+ * @summary Get Limit Price Pairs(MARKET_DATA)
9635
+ * @returns {Promise<RestApiResponse<GetLimitPricePairsResponse>>}
9636
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
9637
+ * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Limit-Price-Pairs Binance API Documentation}
9638
+ */
9639
+ getLimitPricePairs(): Promise<RestApiResponse<GetLimitPricePairsResponse>>;
9565
9640
  /**
9566
9641
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
9567
9642
  *
@@ -10192,6 +10267,7 @@ type index$1_GetFutureHourlyInterestRateResponseInner = GetFutureHourlyInterestR
10192
10267
  type index$1_GetInterestHistoryRequest = GetInterestHistoryRequest;
10193
10268
  type index$1_GetInterestHistoryResponse = GetInterestHistoryResponse;
10194
10269
  type index$1_GetInterestHistoryResponseRowsInner = GetInterestHistoryResponseRowsInner;
10270
+ type index$1_GetLimitPricePairsResponse = GetLimitPricePairsResponse;
10195
10271
  type index$1_GetListScheduleRequest = GetListScheduleRequest;
10196
10272
  type index$1_GetListScheduleResponse = GetListScheduleResponse;
10197
10273
  type index$1_GetListScheduleResponseInner = GetListScheduleResponseInner;
@@ -10344,7 +10420,7 @@ type index$1_TransferApi = TransferApi;
10344
10420
  declare const index$1_TransferApi: typeof TransferApi;
10345
10421
  type index$1_TransferApiInterface = TransferApiInterface;
10346
10422
  declare namespace index$1 {
10347
- export { index$1_AccountApi as AccountApi, type index$1_AccountApiInterface as AccountApiInterface, type index$1_AdjustCrossMarginMaxLeverageRequest as AdjustCrossMarginMaxLeverageRequest, type index$1_AdjustCrossMarginMaxLeverageResponse as AdjustCrossMarginMaxLeverageResponse, index$1_BorrowRepayApi as BorrowRepayApi, type index$1_BorrowRepayApiInterface as BorrowRepayApiInterface, type index$1_CloseIsolatedMarginUserDataStreamRequest as CloseIsolatedMarginUserDataStreamRequest, type index$1_CloseMarginUserDataStreamRequest as CloseMarginUserDataStreamRequest, type index$1_CreateSpecialKeyRequest as CreateSpecialKeyRequest, type index$1_CreateSpecialKeyResponse as CreateSpecialKeyResponse, type index$1_CrossMarginCollateralRatioResponse as CrossMarginCollateralRatioResponse, type index$1_CrossMarginCollateralRatioResponseInner as CrossMarginCollateralRatioResponseInner, type index$1_CrossMarginCollateralRatioResponseInnerCollateralsInner as CrossMarginCollateralRatioResponseInnerCollateralsInner, type index$1_DeleteSpecialKeyRequest as DeleteSpecialKeyRequest, type index$1_DisableIsolatedMarginAccountRequest as DisableIsolatedMarginAccountRequest, type index$1_DisableIsolatedMarginAccountResponse as DisableIsolatedMarginAccountResponse, type index$1_EditIpForSpecialKeyRequest as EditIpForSpecialKeyRequest, type index$1_EnableIsolatedMarginAccountRequest as EnableIsolatedMarginAccountRequest, type index$1_EnableIsolatedMarginAccountResponse as EnableIsolatedMarginAccountResponse, type index$1_GetAllCrossMarginPairsRequest as GetAllCrossMarginPairsRequest, type index$1_GetAllCrossMarginPairsResponse as GetAllCrossMarginPairsResponse, type index$1_GetAllCrossMarginPairsResponseInner as GetAllCrossMarginPairsResponseInner, type index$1_GetAllIsolatedMarginSymbolRequest as GetAllIsolatedMarginSymbolRequest, type index$1_GetAllIsolatedMarginSymbolResponse as GetAllIsolatedMarginSymbolResponse, type index$1_GetAllIsolatedMarginSymbolResponseInner as GetAllIsolatedMarginSymbolResponseInner, type index$1_GetAllMarginAssetsRequest as GetAllMarginAssetsRequest, type index$1_GetAllMarginAssetsResponse as GetAllMarginAssetsResponse, type index$1_GetAllMarginAssetsResponseInner as GetAllMarginAssetsResponseInner, type index$1_GetBnbBurnStatusRequest as GetBnbBurnStatusRequest, type index$1_GetBnbBurnStatusResponse as GetBnbBurnStatusResponse, type index$1_GetCrossMarginTransferHistoryRequest as GetCrossMarginTransferHistoryRequest, type index$1_GetCrossMarginTransferHistoryResponse as GetCrossMarginTransferHistoryResponse, type index$1_GetCrossMarginTransferHistoryResponseRowsInner as GetCrossMarginTransferHistoryResponseRowsInner, type index$1_GetDelistScheduleRequest as GetDelistScheduleRequest, type index$1_GetDelistScheduleResponse as GetDelistScheduleResponse, type index$1_GetDelistScheduleResponseInner as GetDelistScheduleResponseInner, type index$1_GetForceLiquidationRecordRequest as GetForceLiquidationRecordRequest, type index$1_GetForceLiquidationRecordResponse as GetForceLiquidationRecordResponse, type index$1_GetForceLiquidationRecordResponseRowsInner as GetForceLiquidationRecordResponseRowsInner, type index$1_GetFutureHourlyInterestRateRequest as GetFutureHourlyInterestRateRequest, type index$1_GetFutureHourlyInterestRateResponse as GetFutureHourlyInterestRateResponse, type index$1_GetFutureHourlyInterestRateResponseInner as GetFutureHourlyInterestRateResponseInner, type index$1_GetInterestHistoryRequest as GetInterestHistoryRequest, type index$1_GetInterestHistoryResponse as GetInterestHistoryResponse, type index$1_GetInterestHistoryResponseRowsInner as GetInterestHistoryResponseRowsInner, type index$1_GetListScheduleRequest as GetListScheduleRequest, type index$1_GetListScheduleResponse as GetListScheduleResponse, type index$1_GetListScheduleResponseInner as GetListScheduleResponseInner, type index$1_GetSmallLiabilityExchangeCoinListRequest as GetSmallLiabilityExchangeCoinListRequest, type index$1_GetSmallLiabilityExchangeCoinListResponse as GetSmallLiabilityExchangeCoinListResponse, type index$1_GetSmallLiabilityExchangeCoinListResponseInner as GetSmallLiabilityExchangeCoinListResponseInner, type index$1_GetSmallLiabilityExchangeHistoryRequest as GetSmallLiabilityExchangeHistoryRequest, type index$1_GetSmallLiabilityExchangeHistoryResponse as GetSmallLiabilityExchangeHistoryResponse, type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner as GetSmallLiabilityExchangeHistoryResponseRowsInner, type index$1_GetSummaryOfMarginAccountRequest as GetSummaryOfMarginAccountRequest, type index$1_GetSummaryOfMarginAccountResponse as GetSummaryOfMarginAccountResponse, type index$1_KeepaliveIsolatedMarginUserDataStreamRequest as KeepaliveIsolatedMarginUserDataStreamRequest, type index$1_KeepaliveMarginUserDataStreamRequest as KeepaliveMarginUserDataStreamRequest, type index$1_KeepaliveUserDataStreamRequest as KeepaliveUserDataStreamRequest, type index$1_MarginAccountBorrowRepayRequest as MarginAccountBorrowRepayRequest, type index$1_MarginAccountBorrowRepayResponse as MarginAccountBorrowRepayResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolRequest as MarginAccountCancelAllOpenOrdersOnASymbolRequest, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponse as MarginAccountCancelAllOpenOrdersOnASymbolResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner, type index$1_MarginAccountCancelOcoRequest as MarginAccountCancelOcoRequest, type index$1_MarginAccountCancelOcoResponse as MarginAccountCancelOcoResponse, type index$1_MarginAccountCancelOcoResponseOrderReportsInner as MarginAccountCancelOcoResponseOrderReportsInner, type index$1_MarginAccountCancelOcoResponseOrdersInner as MarginAccountCancelOcoResponseOrdersInner, type index$1_MarginAccountCancelOrderRequest as MarginAccountCancelOrderRequest, type index$1_MarginAccountCancelOrderResponse as MarginAccountCancelOrderResponse, index$1_MarginAccountNewOcoNewOrderRespTypeEnum as MarginAccountNewOcoNewOrderRespTypeEnum, type index$1_MarginAccountNewOcoRequest as MarginAccountNewOcoRequest, type index$1_MarginAccountNewOcoResponse as MarginAccountNewOcoResponse, type index$1_MarginAccountNewOcoResponseOrderReportsInner as MarginAccountNewOcoResponseOrderReportsInner, type index$1_MarginAccountNewOcoResponseOrdersInner as MarginAccountNewOcoResponseOrdersInner, index$1_MarginAccountNewOcoSideEnum as MarginAccountNewOcoSideEnum, index$1_MarginAccountNewOrderNewOrderRespTypeEnum as MarginAccountNewOrderNewOrderRespTypeEnum, type index$1_MarginAccountNewOrderRequest as MarginAccountNewOrderRequest, type index$1_MarginAccountNewOrderResponse as MarginAccountNewOrderResponse, type index$1_MarginAccountNewOrderResponseFillsInner as MarginAccountNewOrderResponseFillsInner, index$1_MarginAccountNewOrderSideEnum as MarginAccountNewOrderSideEnum, index$1_MarginAccountNewOrderTimeInForceEnum as MarginAccountNewOrderTimeInForceEnum, index$1_MarginAccountNewOtoNewOrderRespTypeEnum as MarginAccountNewOtoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtoRequest as MarginAccountNewOtoRequest, type index$1_MarginAccountNewOtoResponse as MarginAccountNewOtoResponse, type index$1_MarginAccountNewOtoResponseOrderReportsInner as MarginAccountNewOtoResponseOrderReportsInner, type index$1_MarginAccountNewOtoResponseOrdersInner as MarginAccountNewOtoResponseOrdersInner, index$1_MarginAccountNewOtocoNewOrderRespTypeEnum as MarginAccountNewOtocoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtocoRequest as MarginAccountNewOtocoRequest, type index$1_MarginAccountNewOtocoResponse as MarginAccountNewOtocoResponse, type index$1_MarginAccountNewOtocoResponseOrderReportsInner as MarginAccountNewOtocoResponseOrderReportsInner, type index$1_MarginAccountNewOtocoResponseOrdersInner as MarginAccountNewOtocoResponseOrdersInner, type index$1_MarginManualLiquidationRequest as MarginManualLiquidationRequest, type index$1_MarginManualLiquidationResponse as MarginManualLiquidationResponse, index$1_MarketDataApi as MarketDataApi, type index$1_MarketDataApiInterface as MarketDataApiInterface, type index$1_QueryBorrowRepayRecordsInMarginAccountRequest as QueryBorrowRepayRecordsInMarginAccountRequest, type index$1_QueryBorrowRepayRecordsInMarginAccountResponse as QueryBorrowRepayRecordsInMarginAccountResponse, type index$1_QueryBorrowRepayRecordsInMarginAccountResponseRowsInner as QueryBorrowRepayRecordsInMarginAccountResponseRowsInner, type index$1_QueryCrossIsolatedMarginCapitalFlowRequest as QueryCrossIsolatedMarginCapitalFlowRequest, type index$1_QueryCrossIsolatedMarginCapitalFlowResponse as QueryCrossIsolatedMarginCapitalFlowResponse, type index$1_QueryCrossIsolatedMarginCapitalFlowResponseInner as QueryCrossIsolatedMarginCapitalFlowResponseInner, type index$1_QueryCrossMarginAccountDetailsRequest as QueryCrossMarginAccountDetailsRequest, type index$1_QueryCrossMarginAccountDetailsResponse as QueryCrossMarginAccountDetailsResponse, type index$1_QueryCrossMarginAccountDetailsResponseUserAssetsInner as QueryCrossMarginAccountDetailsResponseUserAssetsInner, type index$1_QueryCrossMarginFeeDataRequest as QueryCrossMarginFeeDataRequest, type index$1_QueryCrossMarginFeeDataResponse as QueryCrossMarginFeeDataResponse, type index$1_QueryCrossMarginFeeDataResponseInner as QueryCrossMarginFeeDataResponseInner, type index$1_QueryCurrentMarginOrderCountUsageRequest as QueryCurrentMarginOrderCountUsageRequest, type index$1_QueryCurrentMarginOrderCountUsageResponse as QueryCurrentMarginOrderCountUsageResponse, type index$1_QueryCurrentMarginOrderCountUsageResponseInner as QueryCurrentMarginOrderCountUsageResponseInner, type index$1_QueryEnabledIsolatedMarginAccountLimitRequest as QueryEnabledIsolatedMarginAccountLimitRequest, type index$1_QueryEnabledIsolatedMarginAccountLimitResponse as QueryEnabledIsolatedMarginAccountLimitResponse, type index$1_QueryIsolatedMarginAccountInfoRequest as QueryIsolatedMarginAccountInfoRequest, type index$1_QueryIsolatedMarginAccountInfoResponse as QueryIsolatedMarginAccountInfoResponse, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInner as QueryIsolatedMarginAccountInfoResponseAssetsInner, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset, type index$1_QueryIsolatedMarginFeeDataRequest as QueryIsolatedMarginFeeDataRequest, type index$1_QueryIsolatedMarginFeeDataResponse as QueryIsolatedMarginFeeDataResponse, type index$1_QueryIsolatedMarginFeeDataResponseInner as QueryIsolatedMarginFeeDataResponseInner, type index$1_QueryIsolatedMarginFeeDataResponseInnerDataInner as QueryIsolatedMarginFeeDataResponseInnerDataInner, type index$1_QueryIsolatedMarginTierDataRequest as QueryIsolatedMarginTierDataRequest, type index$1_QueryIsolatedMarginTierDataResponse as QueryIsolatedMarginTierDataResponse, type index$1_QueryIsolatedMarginTierDataResponseInner as QueryIsolatedMarginTierDataResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner, type index$1_QueryMarginAccountsAllOcoRequest as QueryMarginAccountsAllOcoRequest, type index$1_QueryMarginAccountsAllOcoResponse as QueryMarginAccountsAllOcoResponse, type index$1_QueryMarginAccountsAllOcoResponseInner as QueryMarginAccountsAllOcoResponseInner, type index$1_QueryMarginAccountsAllOcoResponseInnerOrdersInner as QueryMarginAccountsAllOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsAllOrdersRequest as QueryMarginAccountsAllOrdersRequest, type index$1_QueryMarginAccountsAllOrdersResponse as QueryMarginAccountsAllOrdersResponse, type index$1_QueryMarginAccountsAllOrdersResponseInner as QueryMarginAccountsAllOrdersResponseInner, type index$1_QueryMarginAccountsOcoRequest as QueryMarginAccountsOcoRequest, type index$1_QueryMarginAccountsOcoResponse as QueryMarginAccountsOcoResponse, type index$1_QueryMarginAccountsOcoResponseOrdersInner as QueryMarginAccountsOcoResponseOrdersInner, type index$1_QueryMarginAccountsOpenOcoRequest as QueryMarginAccountsOpenOcoRequest, type index$1_QueryMarginAccountsOpenOcoResponse as QueryMarginAccountsOpenOcoResponse, type index$1_QueryMarginAccountsOpenOcoResponseInner as QueryMarginAccountsOpenOcoResponseInner, type index$1_QueryMarginAccountsOpenOcoResponseInnerOrdersInner as QueryMarginAccountsOpenOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsOpenOrdersRequest as QueryMarginAccountsOpenOrdersRequest, type index$1_QueryMarginAccountsOpenOrdersResponse as QueryMarginAccountsOpenOrdersResponse, type index$1_QueryMarginAccountsOpenOrdersResponseInner as QueryMarginAccountsOpenOrdersResponseInner, type index$1_QueryMarginAccountsOrderRequest as QueryMarginAccountsOrderRequest, type index$1_QueryMarginAccountsOrderResponse as QueryMarginAccountsOrderResponse, type index$1_QueryMarginAccountsTradeListRequest as QueryMarginAccountsTradeListRequest, type index$1_QueryMarginAccountsTradeListResponse as QueryMarginAccountsTradeListResponse, type index$1_QueryMarginAccountsTradeListResponseInner as QueryMarginAccountsTradeListResponseInner, type index$1_QueryMarginAvailableInventoryRequest as QueryMarginAvailableInventoryRequest, type index$1_QueryMarginAvailableInventoryResponse as QueryMarginAvailableInventoryResponse, type index$1_QueryMarginAvailableInventoryResponseAssets as QueryMarginAvailableInventoryResponseAssets, type index$1_QueryMarginInterestRateHistoryRequest as QueryMarginInterestRateHistoryRequest, type index$1_QueryMarginInterestRateHistoryResponse as QueryMarginInterestRateHistoryResponse, type index$1_QueryMarginInterestRateHistoryResponseInner as QueryMarginInterestRateHistoryResponseInner, type index$1_QueryMarginPriceindexRequest as QueryMarginPriceindexRequest, type index$1_QueryMarginPriceindexResponse as QueryMarginPriceindexResponse, type index$1_QueryMaxBorrowRequest as QueryMaxBorrowRequest, type index$1_QueryMaxBorrowResponse as QueryMaxBorrowResponse, type index$1_QueryMaxTransferOutAmountRequest as QueryMaxTransferOutAmountRequest, type index$1_QueryMaxTransferOutAmountResponse as QueryMaxTransferOutAmountResponse, type index$1_QuerySpecialKeyListRequest as QuerySpecialKeyListRequest, type index$1_QuerySpecialKeyListResponse as QuerySpecialKeyListResponse, type index$1_QuerySpecialKeyListResponseInner as QuerySpecialKeyListResponseInner, type index$1_QuerySpecialKeyRequest as QuerySpecialKeyRequest, type index$1_QuerySpecialKeyResponse as QuerySpecialKeyResponse, index$1_RestAPI as RestAPI, index$1_RiskDataStreamApi as RiskDataStreamApi, type index$1_RiskDataStreamApiInterface as RiskDataStreamApiInterface, type index$1_SmallLiabilityExchangeRequest as SmallLiabilityExchangeRequest, type index$1_StartIsolatedMarginUserDataStreamRequest as StartIsolatedMarginUserDataStreamRequest, type index$1_StartIsolatedMarginUserDataStreamResponse as StartIsolatedMarginUserDataStreamResponse, type index$1_StartMarginUserDataStreamResponse as StartMarginUserDataStreamResponse, type index$1_StartUserDataStreamResponse as StartUserDataStreamResponse, index$1_TradeApi as TradeApi, type index$1_TradeApiInterface as TradeApiInterface, index$1_TradeDataStreamApi as TradeDataStreamApi, type index$1_TradeDataStreamApiInterface as TradeDataStreamApiInterface, index$1_TransferApi as TransferApi, type index$1_TransferApiInterface as TransferApiInterface };
10423
+ export { index$1_AccountApi as AccountApi, type index$1_AccountApiInterface as AccountApiInterface, type index$1_AdjustCrossMarginMaxLeverageRequest as AdjustCrossMarginMaxLeverageRequest, type index$1_AdjustCrossMarginMaxLeverageResponse as AdjustCrossMarginMaxLeverageResponse, index$1_BorrowRepayApi as BorrowRepayApi, type index$1_BorrowRepayApiInterface as BorrowRepayApiInterface, type index$1_CloseIsolatedMarginUserDataStreamRequest as CloseIsolatedMarginUserDataStreamRequest, type index$1_CloseMarginUserDataStreamRequest as CloseMarginUserDataStreamRequest, type index$1_CreateSpecialKeyRequest as CreateSpecialKeyRequest, type index$1_CreateSpecialKeyResponse as CreateSpecialKeyResponse, type index$1_CrossMarginCollateralRatioResponse as CrossMarginCollateralRatioResponse, type index$1_CrossMarginCollateralRatioResponseInner as CrossMarginCollateralRatioResponseInner, type index$1_CrossMarginCollateralRatioResponseInnerCollateralsInner as CrossMarginCollateralRatioResponseInnerCollateralsInner, type index$1_DeleteSpecialKeyRequest as DeleteSpecialKeyRequest, type index$1_DisableIsolatedMarginAccountRequest as DisableIsolatedMarginAccountRequest, type index$1_DisableIsolatedMarginAccountResponse as DisableIsolatedMarginAccountResponse, type index$1_EditIpForSpecialKeyRequest as EditIpForSpecialKeyRequest, type index$1_EnableIsolatedMarginAccountRequest as EnableIsolatedMarginAccountRequest, type index$1_EnableIsolatedMarginAccountResponse as EnableIsolatedMarginAccountResponse, type index$1_GetAllCrossMarginPairsRequest as GetAllCrossMarginPairsRequest, type index$1_GetAllCrossMarginPairsResponse as GetAllCrossMarginPairsResponse, type index$1_GetAllCrossMarginPairsResponseInner as GetAllCrossMarginPairsResponseInner, type index$1_GetAllIsolatedMarginSymbolRequest as GetAllIsolatedMarginSymbolRequest, type index$1_GetAllIsolatedMarginSymbolResponse as GetAllIsolatedMarginSymbolResponse, type index$1_GetAllIsolatedMarginSymbolResponseInner as GetAllIsolatedMarginSymbolResponseInner, type index$1_GetAllMarginAssetsRequest as GetAllMarginAssetsRequest, type index$1_GetAllMarginAssetsResponse as GetAllMarginAssetsResponse, type index$1_GetAllMarginAssetsResponseInner as GetAllMarginAssetsResponseInner, type index$1_GetBnbBurnStatusRequest as GetBnbBurnStatusRequest, type index$1_GetBnbBurnStatusResponse as GetBnbBurnStatusResponse, type index$1_GetCrossMarginTransferHistoryRequest as GetCrossMarginTransferHistoryRequest, type index$1_GetCrossMarginTransferHistoryResponse as GetCrossMarginTransferHistoryResponse, type index$1_GetCrossMarginTransferHistoryResponseRowsInner as GetCrossMarginTransferHistoryResponseRowsInner, type index$1_GetDelistScheduleRequest as GetDelistScheduleRequest, type index$1_GetDelistScheduleResponse as GetDelistScheduleResponse, type index$1_GetDelistScheduleResponseInner as GetDelistScheduleResponseInner, type index$1_GetForceLiquidationRecordRequest as GetForceLiquidationRecordRequest, type index$1_GetForceLiquidationRecordResponse as GetForceLiquidationRecordResponse, type index$1_GetForceLiquidationRecordResponseRowsInner as GetForceLiquidationRecordResponseRowsInner, type index$1_GetFutureHourlyInterestRateRequest as GetFutureHourlyInterestRateRequest, type index$1_GetFutureHourlyInterestRateResponse as GetFutureHourlyInterestRateResponse, type index$1_GetFutureHourlyInterestRateResponseInner as GetFutureHourlyInterestRateResponseInner, type index$1_GetInterestHistoryRequest as GetInterestHistoryRequest, type index$1_GetInterestHistoryResponse as GetInterestHistoryResponse, type index$1_GetInterestHistoryResponseRowsInner as GetInterestHistoryResponseRowsInner, type index$1_GetLimitPricePairsResponse as GetLimitPricePairsResponse, type index$1_GetListScheduleRequest as GetListScheduleRequest, type index$1_GetListScheduleResponse as GetListScheduleResponse, type index$1_GetListScheduleResponseInner as GetListScheduleResponseInner, type index$1_GetSmallLiabilityExchangeCoinListRequest as GetSmallLiabilityExchangeCoinListRequest, type index$1_GetSmallLiabilityExchangeCoinListResponse as GetSmallLiabilityExchangeCoinListResponse, type index$1_GetSmallLiabilityExchangeCoinListResponseInner as GetSmallLiabilityExchangeCoinListResponseInner, type index$1_GetSmallLiabilityExchangeHistoryRequest as GetSmallLiabilityExchangeHistoryRequest, type index$1_GetSmallLiabilityExchangeHistoryResponse as GetSmallLiabilityExchangeHistoryResponse, type index$1_GetSmallLiabilityExchangeHistoryResponseRowsInner as GetSmallLiabilityExchangeHistoryResponseRowsInner, type index$1_GetSummaryOfMarginAccountRequest as GetSummaryOfMarginAccountRequest, type index$1_GetSummaryOfMarginAccountResponse as GetSummaryOfMarginAccountResponse, type index$1_KeepaliveIsolatedMarginUserDataStreamRequest as KeepaliveIsolatedMarginUserDataStreamRequest, type index$1_KeepaliveMarginUserDataStreamRequest as KeepaliveMarginUserDataStreamRequest, type index$1_KeepaliveUserDataStreamRequest as KeepaliveUserDataStreamRequest, type index$1_MarginAccountBorrowRepayRequest as MarginAccountBorrowRepayRequest, type index$1_MarginAccountBorrowRepayResponse as MarginAccountBorrowRepayResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolRequest as MarginAccountCancelAllOpenOrdersOnASymbolRequest, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponse as MarginAccountCancelAllOpenOrdersOnASymbolResponse, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrderReportsInner, type index$1_MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner as MarginAccountCancelAllOpenOrdersOnASymbolResponseInnerOrdersInner, type index$1_MarginAccountCancelOcoRequest as MarginAccountCancelOcoRequest, type index$1_MarginAccountCancelOcoResponse as MarginAccountCancelOcoResponse, type index$1_MarginAccountCancelOcoResponseOrderReportsInner as MarginAccountCancelOcoResponseOrderReportsInner, type index$1_MarginAccountCancelOcoResponseOrdersInner as MarginAccountCancelOcoResponseOrdersInner, type index$1_MarginAccountCancelOrderRequest as MarginAccountCancelOrderRequest, type index$1_MarginAccountCancelOrderResponse as MarginAccountCancelOrderResponse, index$1_MarginAccountNewOcoNewOrderRespTypeEnum as MarginAccountNewOcoNewOrderRespTypeEnum, type index$1_MarginAccountNewOcoRequest as MarginAccountNewOcoRequest, type index$1_MarginAccountNewOcoResponse as MarginAccountNewOcoResponse, type index$1_MarginAccountNewOcoResponseOrderReportsInner as MarginAccountNewOcoResponseOrderReportsInner, type index$1_MarginAccountNewOcoResponseOrdersInner as MarginAccountNewOcoResponseOrdersInner, index$1_MarginAccountNewOcoSideEnum as MarginAccountNewOcoSideEnum, index$1_MarginAccountNewOrderNewOrderRespTypeEnum as MarginAccountNewOrderNewOrderRespTypeEnum, type index$1_MarginAccountNewOrderRequest as MarginAccountNewOrderRequest, type index$1_MarginAccountNewOrderResponse as MarginAccountNewOrderResponse, type index$1_MarginAccountNewOrderResponseFillsInner as MarginAccountNewOrderResponseFillsInner, index$1_MarginAccountNewOrderSideEnum as MarginAccountNewOrderSideEnum, index$1_MarginAccountNewOrderTimeInForceEnum as MarginAccountNewOrderTimeInForceEnum, index$1_MarginAccountNewOtoNewOrderRespTypeEnum as MarginAccountNewOtoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtoRequest as MarginAccountNewOtoRequest, type index$1_MarginAccountNewOtoResponse as MarginAccountNewOtoResponse, type index$1_MarginAccountNewOtoResponseOrderReportsInner as MarginAccountNewOtoResponseOrderReportsInner, type index$1_MarginAccountNewOtoResponseOrdersInner as MarginAccountNewOtoResponseOrdersInner, index$1_MarginAccountNewOtocoNewOrderRespTypeEnum as MarginAccountNewOtocoNewOrderRespTypeEnum, type index$1_MarginAccountNewOtocoRequest as MarginAccountNewOtocoRequest, type index$1_MarginAccountNewOtocoResponse as MarginAccountNewOtocoResponse, type index$1_MarginAccountNewOtocoResponseOrderReportsInner as MarginAccountNewOtocoResponseOrderReportsInner, type index$1_MarginAccountNewOtocoResponseOrdersInner as MarginAccountNewOtocoResponseOrdersInner, type index$1_MarginManualLiquidationRequest as MarginManualLiquidationRequest, type index$1_MarginManualLiquidationResponse as MarginManualLiquidationResponse, index$1_MarketDataApi as MarketDataApi, type index$1_MarketDataApiInterface as MarketDataApiInterface, type index$1_QueryBorrowRepayRecordsInMarginAccountRequest as QueryBorrowRepayRecordsInMarginAccountRequest, type index$1_QueryBorrowRepayRecordsInMarginAccountResponse as QueryBorrowRepayRecordsInMarginAccountResponse, type index$1_QueryBorrowRepayRecordsInMarginAccountResponseRowsInner as QueryBorrowRepayRecordsInMarginAccountResponseRowsInner, type index$1_QueryCrossIsolatedMarginCapitalFlowRequest as QueryCrossIsolatedMarginCapitalFlowRequest, type index$1_QueryCrossIsolatedMarginCapitalFlowResponse as QueryCrossIsolatedMarginCapitalFlowResponse, type index$1_QueryCrossIsolatedMarginCapitalFlowResponseInner as QueryCrossIsolatedMarginCapitalFlowResponseInner, type index$1_QueryCrossMarginAccountDetailsRequest as QueryCrossMarginAccountDetailsRequest, type index$1_QueryCrossMarginAccountDetailsResponse as QueryCrossMarginAccountDetailsResponse, type index$1_QueryCrossMarginAccountDetailsResponseUserAssetsInner as QueryCrossMarginAccountDetailsResponseUserAssetsInner, type index$1_QueryCrossMarginFeeDataRequest as QueryCrossMarginFeeDataRequest, type index$1_QueryCrossMarginFeeDataResponse as QueryCrossMarginFeeDataResponse, type index$1_QueryCrossMarginFeeDataResponseInner as QueryCrossMarginFeeDataResponseInner, type index$1_QueryCurrentMarginOrderCountUsageRequest as QueryCurrentMarginOrderCountUsageRequest, type index$1_QueryCurrentMarginOrderCountUsageResponse as QueryCurrentMarginOrderCountUsageResponse, type index$1_QueryCurrentMarginOrderCountUsageResponseInner as QueryCurrentMarginOrderCountUsageResponseInner, type index$1_QueryEnabledIsolatedMarginAccountLimitRequest as QueryEnabledIsolatedMarginAccountLimitRequest, type index$1_QueryEnabledIsolatedMarginAccountLimitResponse as QueryEnabledIsolatedMarginAccountLimitResponse, type index$1_QueryIsolatedMarginAccountInfoRequest as QueryIsolatedMarginAccountInfoRequest, type index$1_QueryIsolatedMarginAccountInfoResponse as QueryIsolatedMarginAccountInfoResponse, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInner as QueryIsolatedMarginAccountInfoResponseAssetsInner, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerBaseAsset, type index$1_QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset as QueryIsolatedMarginAccountInfoResponseAssetsInnerQuoteAsset, type index$1_QueryIsolatedMarginFeeDataRequest as QueryIsolatedMarginFeeDataRequest, type index$1_QueryIsolatedMarginFeeDataResponse as QueryIsolatedMarginFeeDataResponse, type index$1_QueryIsolatedMarginFeeDataResponseInner as QueryIsolatedMarginFeeDataResponseInner, type index$1_QueryIsolatedMarginFeeDataResponseInnerDataInner as QueryIsolatedMarginFeeDataResponseInnerDataInner, type index$1_QueryIsolatedMarginTierDataRequest as QueryIsolatedMarginTierDataRequest, type index$1_QueryIsolatedMarginTierDataResponse as QueryIsolatedMarginTierDataResponse, type index$1_QueryIsolatedMarginTierDataResponseInner as QueryIsolatedMarginTierDataResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponse, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInner, type index$1_QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner as QueryLiabilityCoinLeverageBracketInCrossMarginProModeResponseInnerBracketsInner, type index$1_QueryMarginAccountsAllOcoRequest as QueryMarginAccountsAllOcoRequest, type index$1_QueryMarginAccountsAllOcoResponse as QueryMarginAccountsAllOcoResponse, type index$1_QueryMarginAccountsAllOcoResponseInner as QueryMarginAccountsAllOcoResponseInner, type index$1_QueryMarginAccountsAllOcoResponseInnerOrdersInner as QueryMarginAccountsAllOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsAllOrdersRequest as QueryMarginAccountsAllOrdersRequest, type index$1_QueryMarginAccountsAllOrdersResponse as QueryMarginAccountsAllOrdersResponse, type index$1_QueryMarginAccountsAllOrdersResponseInner as QueryMarginAccountsAllOrdersResponseInner, type index$1_QueryMarginAccountsOcoRequest as QueryMarginAccountsOcoRequest, type index$1_QueryMarginAccountsOcoResponse as QueryMarginAccountsOcoResponse, type index$1_QueryMarginAccountsOcoResponseOrdersInner as QueryMarginAccountsOcoResponseOrdersInner, type index$1_QueryMarginAccountsOpenOcoRequest as QueryMarginAccountsOpenOcoRequest, type index$1_QueryMarginAccountsOpenOcoResponse as QueryMarginAccountsOpenOcoResponse, type index$1_QueryMarginAccountsOpenOcoResponseInner as QueryMarginAccountsOpenOcoResponseInner, type index$1_QueryMarginAccountsOpenOcoResponseInnerOrdersInner as QueryMarginAccountsOpenOcoResponseInnerOrdersInner, type index$1_QueryMarginAccountsOpenOrdersRequest as QueryMarginAccountsOpenOrdersRequest, type index$1_QueryMarginAccountsOpenOrdersResponse as QueryMarginAccountsOpenOrdersResponse, type index$1_QueryMarginAccountsOpenOrdersResponseInner as QueryMarginAccountsOpenOrdersResponseInner, type index$1_QueryMarginAccountsOrderRequest as QueryMarginAccountsOrderRequest, type index$1_QueryMarginAccountsOrderResponse as QueryMarginAccountsOrderResponse, type index$1_QueryMarginAccountsTradeListRequest as QueryMarginAccountsTradeListRequest, type index$1_QueryMarginAccountsTradeListResponse as QueryMarginAccountsTradeListResponse, type index$1_QueryMarginAccountsTradeListResponseInner as QueryMarginAccountsTradeListResponseInner, type index$1_QueryMarginAvailableInventoryRequest as QueryMarginAvailableInventoryRequest, type index$1_QueryMarginAvailableInventoryResponse as QueryMarginAvailableInventoryResponse, type index$1_QueryMarginAvailableInventoryResponseAssets as QueryMarginAvailableInventoryResponseAssets, type index$1_QueryMarginInterestRateHistoryRequest as QueryMarginInterestRateHistoryRequest, type index$1_QueryMarginInterestRateHistoryResponse as QueryMarginInterestRateHistoryResponse, type index$1_QueryMarginInterestRateHistoryResponseInner as QueryMarginInterestRateHistoryResponseInner, type index$1_QueryMarginPriceindexRequest as QueryMarginPriceindexRequest, type index$1_QueryMarginPriceindexResponse as QueryMarginPriceindexResponse, type index$1_QueryMaxBorrowRequest as QueryMaxBorrowRequest, type index$1_QueryMaxBorrowResponse as QueryMaxBorrowResponse, type index$1_QueryMaxTransferOutAmountRequest as QueryMaxTransferOutAmountRequest, type index$1_QueryMaxTransferOutAmountResponse as QueryMaxTransferOutAmountResponse, type index$1_QuerySpecialKeyListRequest as QuerySpecialKeyListRequest, type index$1_QuerySpecialKeyListResponse as QuerySpecialKeyListResponse, type index$1_QuerySpecialKeyListResponseInner as QuerySpecialKeyListResponseInner, type index$1_QuerySpecialKeyRequest as QuerySpecialKeyRequest, type index$1_QuerySpecialKeyResponse as QuerySpecialKeyResponse, index$1_RestAPI as RestAPI, index$1_RiskDataStreamApi as RiskDataStreamApi, type index$1_RiskDataStreamApiInterface as RiskDataStreamApiInterface, type index$1_SmallLiabilityExchangeRequest as SmallLiabilityExchangeRequest, type index$1_StartIsolatedMarginUserDataStreamRequest as StartIsolatedMarginUserDataStreamRequest, type index$1_StartIsolatedMarginUserDataStreamResponse as StartIsolatedMarginUserDataStreamResponse, type index$1_StartMarginUserDataStreamResponse as StartMarginUserDataStreamResponse, type index$1_StartUserDataStreamResponse as StartUserDataStreamResponse, index$1_TradeApi as TradeApi, type index$1_TradeApiInterface as TradeApiInterface, index$1_TradeDataStreamApi as TradeDataStreamApi, type index$1_TradeDataStreamApiInterface as TradeDataStreamApiInterface, index$1_TransferApi as TransferApi, type index$1_TransferApiInterface as TransferApiInterface };
10348
10424
  }
10349
10425
 
10350
10426
  /**
package/dist/index.js CHANGED
@@ -44,7 +44,7 @@ var import_common11 = require("@binance/common");
44
44
 
45
45
  // package.json
46
46
  var name = "@binance/margin-trading";
47
- var version = "6.0.3";
47
+ var version = "7.0.1";
48
48
 
49
49
  // src/rest-api/index.ts
50
50
  var rest_api_exports = {};
@@ -1316,6 +1316,31 @@ var MarketDataApiAxiosParamCreator = function(configuration) {
1316
1316
  timeUnit: _timeUnit
1317
1317
  };
1318
1318
  },
1319
+ /**
1320
+ * Query trading pairs with restriction on limit price range.
1321
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
1322
+ *
1323
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
1324
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
1325
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
1326
+ *
1327
+ * Weight: 1
1328
+ *
1329
+ * @summary Get Limit Price Pairs(MARKET_DATA)
1330
+ *
1331
+ * @throws {RequiredError}
1332
+ */
1333
+ getLimitPricePairs: async () => {
1334
+ const localVarQueryParameter = {};
1335
+ let _timeUnit;
1336
+ if ("timeUnit" in configuration) _timeUnit = configuration.timeUnit;
1337
+ return {
1338
+ endpoint: "/sapi/v1/margin/limit-price-pairs",
1339
+ method: "GET",
1340
+ params: localVarQueryParameter,
1341
+ timeUnit: _timeUnit
1342
+ };
1343
+ },
1319
1344
  /**
1320
1345
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
1321
1346
  *
@@ -1573,6 +1598,33 @@ var MarketDataApi = class {
1573
1598
  { isSigned: false }
1574
1599
  );
1575
1600
  }
1601
+ /**
1602
+ * Query trading pairs with restriction on limit price range.
1603
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
1604
+ *
1605
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
1606
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
1607
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
1608
+ *
1609
+ * Weight: 1
1610
+ *
1611
+ * @summary Get Limit Price Pairs(MARKET_DATA)
1612
+ * @returns {Promise<RestApiResponse<GetLimitPricePairsResponse>>}
1613
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
1614
+ * @memberof MarketDataApi
1615
+ * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Limit-Price-Pairs Binance API Documentation}
1616
+ */
1617
+ async getLimitPricePairs() {
1618
+ const localVarAxiosArgs = await this.localVarAxiosParamCreator.getLimitPricePairs();
1619
+ return (0, import_common3.sendRequest)(
1620
+ this.configuration,
1621
+ localVarAxiosArgs.endpoint,
1622
+ localVarAxiosArgs.method,
1623
+ localVarAxiosArgs.params,
1624
+ localVarAxiosArgs?.timeUnit,
1625
+ { isSigned: false }
1626
+ );
1627
+ }
1576
1628
  /**
1577
1629
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
1578
1630
  *
@@ -4921,6 +4973,24 @@ var RestAPI = class {
4921
4973
  getDelistSchedule(requestParameters = {}) {
4922
4974
  return this.marketDataApi.getDelistSchedule(requestParameters);
4923
4975
  }
4976
+ /**
4977
+ * Query trading pairs with restriction on limit price range.
4978
+ * In margin trading, you can place orders with limit price. Limit price should be within (-15%, 15%) of current index price for a list of margin trading pairs. This rule only impacts limit sell orders with limit price that is lower than current index price and limit buy orders with limit price that is higher than current index price.
4979
+ *
4980
+ * - Buy order: Your order will be rejected with an error message notification if the limit price is 15% above the index price.
4981
+ * - Sell order: Your order will be rejected with an error message notification if the limit price is 15% below the index price.
4982
+ * Please review the limit price order placing strategy, backtest and calibrate the planned order size with the trading volume and order book depth to prevent trading loss.
4983
+ *
4984
+ * Weight: 1
4985
+ *
4986
+ * @summary Get Limit Price Pairs(MARKET_DATA)
4987
+ * @returns {Promise<RestApiResponse<GetLimitPricePairsResponse>>}
4988
+ * @throws {RequiredError | ConnectorClientError | UnauthorizedError | ForbiddenError | TooManyRequestsError | RateLimitBanError | ServerError | NotFoundError | NetworkError | BadRequestError}
4989
+ * @see {@link https://developers.binance.com/docs/margin_trading/market-data/Get-Limit-Price-Pairs Binance API Documentation}
4990
+ */
4991
+ getLimitPricePairs() {
4992
+ return this.marketDataApi.getLimitPricePairs();
4993
+ }
4924
4994
  /**
4925
4995
  * Get the upcoming tokens or symbols listing schedule for Cross Margin and Isolated Margin.
4926
4996
  *