Binance

July 26, 2026 · View on GitHub

Founded in 2017, Binance is one of the largest cryptocurrency exchanges in terms of daily trading volume, and open interest of crypto assets and crypto derivative products.

NautilusTrader provides Binance integration in both Python and Rust. The Rust adapter supports all product types listed below and includes additional features (noted inline). The Python adapter supports the same product types.

Supported products:

  • Binance Spot (including Binance US)
  • Binance USDT-Margined Futures (perpetuals and current or next monthly and quarterly delivery contracts)
  • Binance Coin-Margined Futures (perpetuals and current or next quarterly delivery contracts)

Examples

Overview

The Rust-backed Python v2 adapter exposes these public components:

  • BinanceDataClientConfig and BinanceExecClientConfig: Live client configuration.
  • BinanceInstrumentProviderConfig: Instrument selection, filtering, warning, and fee policy.
  • BinanceDataClientFactory and BinanceExecutionClientFactory: Trading node client factories.
  • load_binance_instruments: Standalone configured instrument discovery.
  • load_binance_order_book_deltas: Rust-backed Binance depth CSV loading for order book wrangling.
  • BINANCE, BINANCE_CLIENT_ID, BINANCE_VENUE, and the client-order-ID decoders: Public identifiers and migration utilities.

:::note Most users configure a live trading node (as below) and do not interact with these lower-level components directly. :::

Low-level HTTP and WebSocket clients, their caches, and product-specific instrument provider objects remain private Rust implementation details. Use the live configs and factories, or the standalone instrument loader, instead of depending on those internals.

Python v2 migration surface

The following table maps the migration-critical Python v1 surface to v2. It records accepted renames and removals instead of exposing private Rust structure for one-for-one parity.

Python v1 surfacePython v2 path or decision
BINANCE, BINANCE_CLIENT_ID, BINANCE_VENUEPreserved at the adapter package top level.
BinanceDataClientConfig, BinanceExecClientConfig, BinanceInstrumentProviderConfigPreserved. Both client configs expose their immutable instrument_provider configuration.
BinanceLiveDataClientFactory, BinanceLiveExecClientFactoryRenamed to BinanceDataClientFactory and BinanceExecutionClientFactory.
BinanceSpotInstrumentProvider, BinanceFuturesInstrumentProvider, get_cached_binance_http_clientReplaced by await load_binance_instruments(config). Low‑level clients and provider caches are not public.
BinanceOrderBookDeltaDataLoaderReplaced by the stateless load_binance_order_book_deltas(...) function.
decode_binance_spot_client_order_id, decode_binance_futures_client_order_idPreserved at runtime and in generated type stubs.
BinanceAccountTypeReplaced by BinanceProductType: SPOT, USD_M, and COIN_M cover the supported products.
BinanceKeyTypeRemoved. Configure the supported credential form directly; v2 validates the selected product and transport.
BinanceTickerReplaced by explicit BinanceSpotTicker and BinanceFuturesTicker types.
Futures liquidation, mark‑price, open‑interest, history, and ticker typesPreserved as Rust‑backed top‑level types.
V1 URL builders, credential selectors, symbol converters, endpoint enums, retry controls, and raw response modelsRemoved from the public Python surface. Live configs and domain‑level types own these behaviors.

For standalone discovery, pass the same data-client and provider configuration used by a live client:

import asyncio

from nautilus_trader.adapters.binance import BinanceDataClientConfig
from nautilus_trader.adapters.binance import BinanceInstrumentProviderConfig
from nautilus_trader.adapters.binance import BinanceProductType
from nautilus_trader.adapters.binance import load_binance_instruments

config = BinanceDataClientConfig(
    product_type=BinanceProductType.USD_M,
    instrument_provider=BinanceInstrumentProviderConfig(
        load_all=False,
        load_ids=["BTCUSDT-PERP.BINANCE"],
    ),
)
instruments = asyncio.run(load_binance_instruments(config))

This function supports Spot, USD-M, and COIN-M. It uses the configured environment, URLs, proxy, receive window, Binance US mode, filters, warning policy, and commission policy. Margin is not a supported Binance product and is rejected.

For Binance depth CSV data, call the stateless loader directly:

from nautilus_trader.adapters.binance import load_binance_order_book_deltas

df = load_binance_order_book_deltas(path, nrows=1_000_000)

Accepted rows preserve the v1 DataFrame values and column order. File-open failures now raise RuntimeError instead of FileNotFoundError, and invalid numeric fields are rejected with RuntimeError instead of being left to pandas dtype inference. Invalid sides continue to raise RuntimeError with the v1 message.

Product support

Product TypeSupportedNotes
Spot Markets (incl. Binance US)
Margin Accounts (Cross & Isolated)-Not implemented. Planned for v2.
USDT-Margined Futures (PERP & Delivery)Monthly and quarterly delivery contracts.
Coin‑Margined Futures (PERP & Delivery)Quarterly delivery contracts.

:::note Margin account features (borrow, repay, isolated margin management) are not implemented. The Python adapter will not add margin support. Full margin trading support is planned for v2. :::

:::info Each Binance client instance handles one product type. The Rust configs use a singular product_type field, and the live factories create one data or execution client from one config. To run Spot and Futures in the same node, configure separate clients with distinct IDs such as BINANCE_SPOT and BINANCE_FUTURES, then pass the matching client_id when a strategy subscribes or submits orders. The Python adapter uses different config field names, but examples/live/binance/binance_spot_and_futures_market_maker.py shows the same multi-client ID routing pattern. :::

Data types

The integration includes several custom data types:

  • BinanceSpotTicker: Spot 24-hour ticker data including prices, volumes, and trade statistics.
  • BinanceFuturesTicker: Futures 24-hour ticker data including price and statistics.
  • BinanceBar: Bar data with additional volume metrics for historical and real-time use.
  • BinanceFuturesMarkPriceUpdate: Futures mark data including the estimated settlement price.
  • BinanceFuturesLiquidation: Futures liquidation events from the forceOrder stream.

See the Binance API Reference for full definitions.

Symbology

Native Binance symbols are used where possible for spot and futures contracts. Because NautilusTrader supports multi-venue trading, it must distinguish between BTCUSDT the spot pair and BTCUSDT the perpetual futures contract (Binance uses the same symbol for both).

Nautilus appends -PERP to USD-M perpetual symbols. For example, the Binance USD-M BTCUSDT perpetual becomes BTCUSDT-PERP. Binance already names COIN-M perpetuals with _PERP, so BTCUSD_PERP remains unchanged.

Delivery symbols keep Binance's _YYMMDD suffix. For example, BTCUSDT_260925 and BTCUSD_260925 remain unchanged within Nautilus. USD-M supports the documented CURRENT_MONTH, NEXT_MONTH, CURRENT_QUARTER, and NEXT_QUARTER contract types. COIN-M supports CURRENT_QUARTER and NEXT_QUARTER. Contract availability varies by environment and listing cycle.

USD-M delivery instruments are linear and settle in the margin asset. COIN-M delivery instruments are inverse, settle in the margin asset (the base currency), and use Binance's contractSize as the instrument multiplier. Both use onboardDate and deliveryDate for activation and expiration. See Binance's official USD-M common definitions and COIN-M common definitions.

The Rust Futures data tester accepts a delivery instrument without source edits:

BINANCE_FUTURES_INSTRUMENT_ID=BTCUSDT_260925.BINANCE \
  cargo run -p nautilus-binance --example binance-futures-data-tester --features examples

Order capability

The following tables detail order types, execution instructions, and time-in-force options across Binance account types.

Order types

Order TypeSpotMarginUSDT FuturesCoin FuturesNotes
MARKET-Quote quantity support: Spot only.
LIMIT-
STOP_MARKET--Futures only.
STOP_LIMIT-
MARKET_IF_TOUCHED--Futures only.
LIMIT_IF_TOUCHED-
TRAILING_STOP_MARKET--Futures only.

Execution instructions

InstructionSpotMarginUSDT FuturesCoin FuturesNotes
post_only-See restrictions below.
reduce_only--Futures only; disabled in Hedge Mode.

Post-only restrictions

Only limit order types support post_only.

Order TypeSpotMarginUSDT FuturesCoin FuturesNotes
LIMIT-Uses LIMIT_MAKER for Spot, GTX TIF for Futures.
STOP_LIMIT--Futures only.

Time in force

Time in forceSpotMarginUSDT FuturesCoin FuturesNotes
GTC-Good Till Canceled.
GTD✓*-✓**Non‑default local mapping through GTC.
FOK-Fill or Kill.
IOC-Immediate or Cancel.

GTD policy

Binance Spot time-in-force values are GTC, IOC, and FOK; Spot has no native GTD or goodTillDate. USD-M supports native GTD for LIMIT and the limit forms of STOP and TAKE_PROFIT. The adapter routes regular orders through HTTP or WebSocket trading, independent batches through HTTP batchOrders, and conditional algo orders through HTTP algoOrder. The current Binance WebSocket algo schema includes goodTillDate but does not include GTD in its timeInForce enum, so the adapter does not route GTD algo orders through that endpoint. COIN-M has no native GTD value or goodTillDate parameter in its documented order APIs. See the official USD-M trade API and COIN-M common definitions.

USD-M goodTillDate is an epoch timestamp in milliseconds, but Binance ignores any sub-second part. Nautilus rejects an expiry that is not on a whole-second boundary rather than silently rounding it. The expiry must be strictly greater than the current time plus 600 seconds and strictly less than 253402300799000. Native GTD also rejects market and post-only orders and any order without an expiry.

use_gtd=True is the default. It uses native USD-M GTD and rejects native GTD on Spot and COIN-M. Set use_gtd=False only when the submitting strategy has manage_gtd_expiry=True. The adapter then warns and sends GTC, while Nautilus cancels the order at its local expiry. This preserves the v1 locally managed Spot policy without claiming venue-native GTD support.

Advanced order features

FeatureSpotMarginUSDT FuturesCoin FuturesNotes
Order Modification-Price and quantity for LIMIT orders only.
OCO Orders---Spot OCO submitted via orderList/oco.
Bracket Orders----Planned. Currently denied at submission.
Iceberg Orders-Large orders split into visible portions.

Batch operations

OperationSpotMarginUSDT FuturesCoin FuturesNotes
Batch Submit-Spot OCO or Futures batchOrders.
Batch Modify----Not implemented.
Batch Cancel-*-*Spot falls back to individual cancels.

Cancel all orders behavior

When calling cancel_all_orders() from a strategy, the adapter includes orders in both open and inflight (SUBMITTED) states so that the adapter also cancels orders not yet acknowledged by Binance.

Multi-strategy safety: When multiple strategies trade the same instrument, the adapter compares orders owned by the requesting strategy against all orders for that instrument. If the strategy owns all orders, a single cancel-all API call is used. Otherwise, per-strategy cancels are sent (batch for regular orders, individual for algo orders) to avoid affecting other strategies.

Futures algo orders: Conditional order types (STOP_MARKET, STOP_LIMIT, TAKE_PROFIT, TAKE_PROFIT_MARKET, TRAILING_STOP_MARKET) require a different cancel endpoint. The adapter routes these through the correct endpoint automatically. Once an algo order triggers and becomes a regular order, it uses the standard cancel endpoint.

Endpoints used:

Account TypeRegular OrdersAlgo Orders (batch)Algo Orders (individual)
Spot/MarginDELETE /api/v3/openOrdersN/AN/A
USDT FuturesDELETE /fapi/v1/allOpenOrdersDELETE /fapi/v1/algoOpenOrdersDELETE /fapi/v1/algoOrder
Coin FuturesDELETE /dapi/v1/allOpenOrdersDELETE /dapi/v1/algoOpenOrdersDELETE /dapi/v1/algoOrder

Submit, modify, and cancel retry policy

The Rust-backed v2 execution clients send each submit, modify, or cancel command once. They do not blindly retry a command after a timeout, network failure, or Binance unknown-status response because the first request may have reached the matching engine. Retrying could create a duplicate order or apply a second amendment.

  • A definitive local validation error or venue rejection emits the matching rejection event.
  • An ambiguous transport result remains inflight and is resolved by the private stream or REST reconciliation. The adapter does not emit a false rejection while the venue outcome is unknown.
  • A Futures algo cancel may fall back from the pre-trigger algo endpoint to the regular-order endpoint. This changes endpoint after the order triggers; it does not resend the same cancel to the same endpoint.
  • Strategy code must not resubmit a command while its result is ambiguous. Wait for reconciliation or query the order by its client order ID.

The v2 configs intentionally do not expose max_retries, retry_delay_initial_ms, or retry_delay_max_ms. Those fields belong to the legacy Python adapter and do not describe v2 behavior.

Position management

FeatureSpotMarginUSDT FuturesCoin FuturesNotes
Query positions--Real‑time position updates.
Position mode--One‑Way vs Hedge mode (position IDs).
Leverage control--Dynamic leverage adjustment per symbol.
Margin mode--Cross vs Isolated margin per symbol.

Risk events

FeatureSpotMarginUSDT FuturesCoin FuturesNotes
Liquidation handling--Exchange‑forced position closures.
ADL handling--Auto‑Deleveraging events.

Binance Futures can trigger exchange-generated orders in response to risk events:

  • Liquidations: When insufficient margin exists to maintain a position, Binance forcibly closes it at the bankruptcy price. These orders have client IDs starting with autoclose-.
  • ADL (Auto-Deleveraging): When the insurance fund is depleted, Binance closes profitable positions to cover losses. These orders use client ID prefix adl_autoclose.
  • Settlements (USDT-M): Funding/margin settlement orders use client IDs starting with settlement_autoclose-.
  • Deliveries (COIN-M): Expiring delivery contracts auto-close with client IDs starting with delivery_autoclose-.
  • Insurance fund: Takeover by the insurance fund uses status NEW_INSURANCE (deprecated on the public changelog but still observed on the wire).

The adapter detects these special order types via their client ID patterns (checked before the execution type), then:

  1. Logs a warning with order details for monitoring.
  2. Generates a FillReport with correct fill details and TAKER liquidity side.
  3. Generates an OrderStatusReport for reconciliation.

Upstream references:

The execution engine creates external orders from runtime status reports when the order is not already in cache. This covers first-seen exchange-generated orders (the typical case for a live liquidation or ADL event). The engine assigns the order to any strategy that has claimed the instrument via external_order_claims, or to the EXTERNAL strategy by default.

Commission estimation

When Binance omits the commission fields (N/n) from the fill event, the Rust adapter estimates commission as default_taker_fee * qty * price using the quote currency. This applies to USD-M linear contracts only. COIN-M inverse contracts use zero commission as a fallback because the linear formula does not account for contract size. Configure default_taker_fee on BinanceExecClientConfig to match your fee tier (default: 0.0004 / 0.04%).

Hedge-mode position IDs

When use_position_ids is enabled (default), exchange-generated fill reports include a venue_position_id derived from the instrument and position side (e.g. ETHUSDT-PERP.BINANCE-LONG). Keep this enabled for Binance dual-side positions. Set use_position_ids to false only for virtual positions with OmsType.HEDGING, where the engine manages position identity.

For Futures accounts using the Rust adapter in dual-side position mode, set oms_type=OmsType::Hedging. Its Python bindings use OmsType.HEDGING. The Rust adapter defaults to OmsType::Netting for one-way position mode. Leave use_position_ids enabled to track Binance's separate long and short sides.

:::note The status report and fill report are emitted bundled as a single OrderWithFills execution report. The engine creates the external order from the status report and then applies the real fill, preserving the venue's trade_id and commission. Any residual quantity not covered by the bundled fills is closed with an inferred fill from the status report's avg_px. :::

Order querying

FeatureSpotMarginUSDT FuturesCoin FuturesNotes
Query open ordersList all active orders.
Query order historyHistorical order data.
Order status updatesReal‑time order state changes.
Trade historyExecution and fill reports.

Contingent orders

FeatureSpotMarginUSDT FuturesCoin FuturesNotes
Order lists-Spot OCO lists; Futures independent batches.
OCO orders---Spot only, via orderList/oco.
Bracket orders----Planned. Currently denied at submission.
Conditional ordersStop and market‑if‑touched orders.

Order parameters

Customize individual orders by supplying a params dictionary when calling Strategy.submit_order (Python) or setting Params on a SubmitOrder command (Rust). The Binance execution clients recognize:

ParameterTypeAccount typesDescription
price_matchstrUSDT/COIN FuturesSet one of Binance's priceMatch modes (see Price match section below) to delegate price selection to the exchange. Cannot be combined with post_only or iceberg (display_qty) instructions.
close_positionboolUSDT/COIN FuturesClose the entire position when the trigger fires (see Close position section below). Only valid for StopMarket and MarketIfTouched orders. Cannot be combined with reduce_only.

Price match

Binance Futures supports BBO (Best Bid/Offer) price matching via the priceMatch parameter, which delegates price selection to the exchange. Limit orders dynamically join the order book at optimal prices without specifying an exact price level.

When using price_match, you submit a limit order with a reference price (for local risk checks), and Binance determines the actual working price based on the current market state and price match mode.

Valid price match values

ValueBehavior
OPPONENTJoin the best price on the opposing side of the book.
OPPONENT_5Join the opposing side price but allow up to a 5-tick offset.
OPPONENT_10Join the opposing side price but allow up to a 10-tick offset.
OPPONENT_20Join the opposing side price but allow up to a 20-tick offset.
QUEUEJoin the best price on the same side (stay maker).
QUEUE_5Join the same‑side queue but offset up to 5 ticks.
QUEUE_10Join the same‑side queue but offset up to 10 ticks.
QUEUE_20Join the same‑side queue but offset up to 20 ticks.

:::info For more details, see the official documentation. :::

Event sequence

When an order is submitted with price_match:

  1. Nautilus sends the order to Binance with the priceMatch parameter but omits the limit price from the API request.
  2. Binance accepts the order and determines the actual working price.
  3. Nautilus generates an OrderAccepted event.
  4. If the Binance-accepted price differs from the reference price, Nautilus generates an OrderUpdated event with the actual working price.
  5. The order price in the Nautilus cache now matches the Binance-accepted price.

Example

order = strategy.order_factory.limit(
    instrument_id=InstrumentId.from_str("BTCUSDT-PERP.BINANCE"),
    order_side=OrderSide.BUY,
    quantity=Quantity.from_int(1),
    price=Price.from_str("65000"),  # Reference price for local risk checks
)

strategy.submit_order(
    order,
    params={"price_match": "QUEUE"},
)

:::note If Binance accepts the order at a different price (e.g. 64,995.50), you receive an OrderAccepted event followed by an OrderUpdated event with the new price. :::

Close position

Binance Futures conditional orders support closePosition, which closes the entire position when the trigger fires. Binance resolves the quantity server-side from the current position size at trigger time.

Unlike reduce_only, closePosition adapts to position size changes, and Binance auto-cancels the order when the position is closed by other means.

Pass close_position via the params dictionary on StopMarket or MarketIfTouched orders. Cannot be combined with reduce_only.

let params = Params::from([("close_position", true.into())]);
let cmd = SubmitOrder::new(order).with_params(params);
strategy.submit_order(order, params={"close_position": True})

:::info Nautilus omits quantity and reduceOnly from the API request when close_position is set. The order quantity is used only for local risk checks. :::

Trailing stops

For trailing stop market orders on Binance:

  • Use activation_price (optional) to specify when the trailing mechanism activates.
  • When omitted, Binance uses the current market price at submission time.
  • Use trailing_offset for the callback rate (in basis points).

:::warning Do not use trigger_price for trailing stop orders: it will fail with an error. Use activation_price instead. :::

The NautilusTrader integration ID is automatically prefixed to all system-generated client order IDs for every order placed through the Binance Rust adapter. This provides transparent order attribution through Binance's Link and Trade program without requiring any user configuration.

The adapter uses a deterministic two-way encoding to compress outgoing ClientOrderId values into a compact format that fits within Binance's 36-character newClientOrderId limit, and decodes incoming order events back to the original ID before they reach strategies. This transformation is fully transparent: strategies see only their original ClientOrderId values at all times.

:::note The integration ID prefix applies to all order operations including submissions, modifications, cancellations, and status queries. Orders placed before this support was added are handled gracefully through passthrough decoding. :::

:::info This feature is currently available in the Rust adapter only. Users can opt out by passing a custom client_order_id on their orders, or by removing the encoding calls and recompiling. There is no technical limitation preventing either approach. :::

Decoding client order IDs

When querying Binance directly (REST API, web UI, or your own HTTP code), the clientOrderId field contains the encoded form. Two utility functions recover the original Nautilus ClientOrderId:

from nautilus_trader.adapters.binance import (
    decode_binance_futures_client_order_id,
    decode_binance_spot_client_order_id,
)

# Encoded ID from a Binance REST response or the web UI
encoded = "x-TD67BGP9-T0000000000000"
original = decode_binance_spot_client_order_id(encoded)
# Returns "O-20200101-000000-000-000-0"

# Futures equivalent
encoded_futures = "x-aHRE4BCj-T0000000000000"
original_futures = decode_binance_futures_client_order_id(encoded_futures)
# Returns "O-20200101-000000-000-000-0"

Strings without the broker prefix pass through unchanged, so these are safe to call on any clientOrderId value.

:::note The domain-level HTTP clients (BinanceSpotHttpClient, BinanceFuturesHttpClient) decode automatically when returning Nautilus types such as OrderStatusReport. Manual decoding is only needed when working outside the adapter: direct REST queries, the Binance web UI, or raw venue models. :::

Order books

Order books can be maintained at full or partial depths. WebSocket stream update rates differ between Spot and Futures, with Nautilus using the highest available rate:

  • Spot SBE diff depth: 25ms
  • Spot JSON diff depth: 100ms
  • Futures: 0ms (unthrottled)

L1_MBP subscriptions require depth 1 and use the Spot bestBidAsk or bookTicker stream and the Futures bookTicker stream. Each update emits the normal QuoteTick and a two-sided OrderBookDeltas batch with F_MBP flags so a managed L1 book receives the same top-of-book state. Quote and L1 subscriptions share the venue stream through reference counting. The client rejects concurrent L1 and L2 subscriptions for the same instrument.

Explicit order-book snapshot requests are supported separately from subscription synchronization. Spot accepts depths from 1 through 5000. Futures accepts 5, 10, 20, 50, 100, 500, or 1000.

Order book snapshot rebuilds will be triggered on:

  • Initial subscription of the order book data.
  • Data websocket reconnects.

The sequence of events is as follows:

  • Deltas will start buffered.
  • Snapshot is requested and awaited.
  • Snapshot response is parsed to OrderBookDeltas.
  • Snapshot deltas are sent to the DataEngine.
  • Buffered deltas are iterated, dropping those where the sequence number is not greater than the last delta in the snapshot.
  • Deltas will stop buffering.
  • Remaining deltas are sent to the DataEngine.

:::note This snapshot-and-buffer sequence applies to Futures and Spot BookDeltas subscriptions without an explicit depth. Spot partial-depth subscriptions deliver self-contained top-N snapshots. See Spot market data mode. :::

Binance data differences

The ts_event field on QuoteTick differs between transports. Spot SBE uses the microsecond event timestamp. Spot public JSON bookTicker messages can omit an event timestamp, in which case the adapter uses ts_init. Futures uses the transaction time.

Bars and historical market data

Spot supports one-second klines for subscriptions and historical requests. Real-time Spot kline subscriptions require spot_market_data_mode=Json because Binance does not publish kline or ticker streams over Spot SBE. Binance Futures rejects second-level klines because the Futures API does not offer them.

Closed venue klines emit a core Bar and a BinanceBar custom-data event. BinanceBar retains quote volume, trade count, taker-buy base volume, and taker-buy quote volume. Historical core bar requests return Bar; request BinanceBar custom data with bar_type metadata to retain the extended fields in historical responses.

Historical trade requests without bounds use the recent-trades endpoint. A request with time bounds uses aggregate trades and accepts at most 1000 records. Spot passes the supplied bounds to /api/v3/aggTrades. Futures accepts either bound within the last 24 hours; when both are supplied, the range must be shorter than one hour.

Historical core bar requests accept externally aggregated time bars and use the corresponding venue kline endpoint. Internally aggregated bars are built by the DataEngine from raw trade, quote, or source-bar responses through the bar_types request parameter; the Binance data client does not aggregate them.

Binance specific data

You can subscribe to Binance-specific data streams as they become available.

:::note Bars, mark prices, index prices, and funding rates can be subscribed to in the normal way via the Rust adapter. The custom data subscriptions below are for the Python adapter. :::

Binance Futures mark-price payloads preserve the venue P estimated settlement price in BinanceFuturesMarkPriceUpdate. Nautilus also emits standard mark-price, index-price, and funding-rate updates from the same stream. The optional USD-M ap moving-average field is parsed at the transport boundary but is not exposed as domain or custom data.

BinanceSpotTicker

Spot 24-hour ticker custom data requires public JSON market-data mode and an instrument_id metadata value:

from nautilus_trader.core import nautilus_pyo3 as pyo3

self.subscribe_data(
    data_type=pyo3.DataType(
        "BinanceSpotTicker",
        {"instrument_id": "BTCUSDT.BINANCE"},
    ),
    client_id=pyo3.ClientId.from_str("BINANCE"),
)

The adapter subscribes to the instrument @ticker stream. SBE mode rejects this subscription because Binance Spot SBE does not provide the stream.

BinanceFuturesTicker

Subscribe to 24-hour ticker statistics for a specific Futures instrument:

from nautilus_trader.core import nautilus_pyo3 as pyo3

client_id = pyo3.ClientId.from_str("BINANCE")

self.subscribe_data(
    data_type=pyo3.DataType(
        "BinanceFuturesTicker",
        {"instrument_id": "BTCUSDT-PERP.BINANCE"},
    ),
    client_id=client_id,
)

The adapter subscribes to the instrument @ticker stream and emits BinanceFuturesTicker custom data with metadata={"instrument_id": "<instrument_id>"}. Ticker custom data requires instrument_id; all-market ticker subscriptions are not supported.

BinanceFuturesMarkPriceUpdate

Subscribe to BinanceFuturesMarkPriceUpdate (including funding rate info) from your actor or strategy:

from nautilus_trader.adapters.binance import BinanceFuturesMarkPriceUpdate
from nautilus_trader.model import DataType
from nautilus_trader.model import ClientId

# In your `on_start` method
self.subscribe_data(
    data_type=DataType(
        BinanceFuturesMarkPriceUpdate, metadata={"instrument_id": self.instrument.id}
    ),
    client_id=ClientId("BINANCE"),
)

Received BinanceFuturesMarkPriceUpdate objects are passed to your on_data method. Check the type, as this method handles all custom/generic data.

from nautilus_trader.core import Data

def on_data(self, data: Data):
    # First check the type of data
    if isinstance(data, BinanceFuturesMarkPriceUpdate):
        # Do something with the data

BinanceFuturesLiquidation

Subscribe to liquidation updates for either:

  • a specific instrument (<symbol>@forceOrder), or
  • all symbols (!forceOrder@arr) by omitting instrument_id.
from nautilus_trader.core import nautilus_pyo3 as pyo3

client_id = pyo3.ClientId.from_str("BINANCE")

# Instrument-specific
self.subscribe_data(
    data_type=pyo3.DataType(
        "BinanceFuturesLiquidation",
        {"instrument_id": "BTCUSDT-PERP.BINANCE"},
    ),
    client_id=client_id,
)

# All-market (no instrument_id metadata)
self.subscribe_data(
    data_type=pyo3.DataType("BinanceFuturesLiquidation"),
    client_id=client_id,
)

For instrument-specific subscriptions, CustomData.data_type includes metadata={"instrument_id": "<instrument_id>"}. For all-market subscriptions, the data type has no metadata.

When both modes are subscribed concurrently, all-market takes precedence. The adapter suspends per-symbol liquidation streams while all-market is active, and restores active per-symbol streams after all-market is unsubscribed.

Funding rates

The Rust adapter emits FundingRateUpdate as a first-class data type through subscribe_funding_rates. The data comes from the Mark Price Stream WebSocket endpoint, which provides the current funding rate and next funding time alongside mark and index prices. All three subscriptions (subscribe_mark_prices, subscribe_index_prices, subscribe_funding_rates) share a single @markPrice@1s stream with ref-counted subscription management.

Historical funding rates are available through request_funding_rates, which queries the Get Funding Rate History REST endpoint (GET /fapi/v1/fundingRate for USD-M, GET /dapi/v1/fundingRate for COIN-M). Each history row maps to a FundingRateUpdate with ts_event set to the funding time. The next_funding_ns field is None for historical rows because the endpoint does not provide it.

The Python adapter exposes funding rate data through BinanceFuturesMarkPriceUpdate custom data subscriptions (see Binance specific data below).

The interval field on FundingRateUpdate is None for Binance because the Mark Price Stream and the funding rate history endpoint do not include a funding interval field. Binance exposes fundingIntervalHours through the Get Funding Rate Info REST endpoint, but the adapter does not consume it.

Instrument status polling

:::info[Rust-backed v2 client] This feature is available in the Rust data clients and their Python bindings. It does not describe the legacy Python data client. :::

The adapter periodically polls Binance exchangeInfo to detect changes in instrument trading status. When a symbol transitions between states (e.g. Trading to Halt, or Trading to Delivering for a futures contract approaching expiry), the adapter emits an InstrumentStatus event.

The polling interval defaults to 3600 seconds (60 minutes) and is configurable via instrument_status_poll_secs in the data client config. Set to 0 to disable polling entirely.

On initial connect, the adapter seeds its status cache from the exchange info response without emitting events. Only subsequent polls that detect a status change emit InstrumentStatus events. If a symbol disappears from exchange info (e.g. after delisting or contract expiry), the adapter emits NotAvailableForTrading.

Status polling does not reload instrument definitions. The separate instrument_refresh_interval_secs task performs a complete filtered catalogue load, atomically replaces the data-client and WebSocket lookup maps, sends the refreshed instruments to the data engine, and updates the status snapshot. It also refreshes the execution client precision cache. The default full refresh interval is 3600 seconds; set it to 0 to disable it. Disconnect cancels the task, and reconnect starts one replacement task with a new cancellation token.

Status mapping

Spot

Binance statusMarketStatusAction
TradingTrading
EndOfDayClose
HaltHalt
BreakPause
NonRepresentableNotAvailableForTrading

Futures (USD-M)

Binance statusMarketStatusAction
TradingTrading
PendingTradingPreOpen
PreTradingPreOpen
PostTradingPostClose
EndOfDayClose
HaltHalt
AuctionMatchCross
BreakPause
PreDeliveringPreClose
DeliveringClose
DeliveredClose
PreSettlePreClose
SettlingClose
CloseClose
TradingHaltHalt
TradingCancelOnlyHalt

Futures (COIN-M)

Binance statusMarketStatusAction
TradingTrading
PendingTradingPreOpen
PreDeliveringPreClose
DeliveringClose
DeliveredClose
PreSettlePreClose
SettlingClose
CloseClose
PreDelistingPreClose
DelistingSuspend
DownNotAvailableForTrading
TradingHaltHalt
TradingCancelOnlyHalt

:::note Only instruments that are in a tradable state at connect time are tracked. Symbols that start in a non-trading state (e.g. halted at connect) do not appear in the instruments cache, so status transitions for them are not monitored. :::

Rate limiting

Binance uses an interval-based rate limiting system where request weight is tracked per fixed time window (every minute, resetting at :00 seconds). Each API endpoint has an assigned weight cost, and total weight usage is tracked per IP address.

Global weight limits

These are the primary limits shared across all endpoints:

Account TypeWeight LimitInterval
Spot/Margin6,0001 minute
Futures2,4001 minute

Endpoint weight costs

Some endpoints have higher weight costs per request:

EndpointWeightNotes
/api/v3/order1Spot order placement.
/api/v3/allOrders20Spot historical orders (expensive).
/api/v3/klines2+Scales with limit parameter.
/fapi/v1/order1Futures order placement.
/fapi/v1/algoOrder0Uses order‑count limits.
/fapi/v1/allOrders20Futures historical orders (expensive).
/fapi/v1/commissionRate20Futures commission rate query.
/fapi/v1/klines5+Scales with limit parameter.

USD-M Futures POST /fapi/v1/algoOrder consumes 1 from both X-MBX-ORDER-COUNT-10S and X-MBX-ORDER-COUNT-1M. Binance charges no IP request weight for this endpoint; the adapter still queues it through the global bucket as part of its local pacing model.

WebSocket API limits

The WebSocket API (used for user data streams) shares the same weight quota as the REST API:

Limit TypeValueNotes
Request weightSharedCounts against REST API weight quota.
Handshake5Weight cost per connection attempt.
Ping/pong frames5/secMaximum ping/pong rate.

Adapter behavior

The adapter uses token bucket rate limiters to approximate Binance's interval-based limits. This reduces the risk of quota violations while maintaining throughput for normal operations.

For endpoints with dynamic weight (e.g. /klines scales with the limit parameter), the adapter draws a single token per call. Large history requests may need manual pacing. Monitor the X-MBX-USED-WEIGHT-* response headers to track actual usage.

:::warning Binance returns HTTP 429 when you exceed the allowed weight. Repeated violations trigger temporary IP bans (escalating from 2 minutes to 3 days for repeat offenders). :::

:::info For the latest rate limits, query /api/v3/exchangeInfo (Spot) or /fapi/v1/exchangeInfo (Futures), or see:

:::

Configuration

:::note The first tables describe the Rust-backed v2 clients and their Python bindings. The legacy Python tables remain below for users who have not migrated. Do not apply a legacy-only option to v2. :::

Rust-backed v2 data client

OptionDefaultDescription
product_typeSpotOne of Spot, UsdM, or CoinM.
environmentLiveOne of Live, Testnet, or Demo.
base_url_httpNoneOptional HTTP endpoint override.
base_url_wsNoneOptional market WebSocket endpoint override.
api_key / api_secretNoneRequired for Spot SBE; optional for public JSON and Futures data.
spot_market_data_modeSbeJson keeps the credential‑free Global Spot path. Binance US requires Json.
instrument_providerdefaultLoading, filters, parser‑warning, and commission policy.
instrument_refresh_interval_secs3600Full catalogue refresh interval; 0 disables it.
instrument_status_poll_secs3600Status‑only exchange‑info poll interval; 0 disables it.
proxy_urlNoneProxy applied to HTTP and every market WebSocket connection.
recv_window_ms5000Signed HTTP receive window, inclusive range 1..=60000.
usFalseRoute a live Spot JSON client to Binance US.
transport_backendTungsteniteWebSocket transport backend.

Rust-backed v2 execution client

OptionDefaultDescription
trader_id / account_idgenerated IDsNautilus execution identity.
product_typeSpotOne of Spot, UsdM, or CoinM.
environmentLiveOne of Live, Testnet, or Demo.
base_url_httpNoneOptional HTTP endpoint override.
base_url_wsNoneOptional private stream override.
base_url_ws_tradingNoneOptional Global Spot or USD-M WebSocket trading override.
use_ws_tradingTrueUse Global WebSocket order entry where supported; Binance US uses HTTP.
instrument_providerdefaultLoading, filters, parser‑warning, and commission policy.
instrument_refresh_interval_secs3600Execution precision‑cache refresh interval; 0 disables it.
proxy_urlNoneProxy applied to HTTP, private streams, and WebSocket trading.
recv_window_ms5000Signed HTTP and WebSocket receive window, inclusive range 1..=60000.
usFalseRoute a live Spot execution client to Binance US.
api_key / api_secretNoneGlobal uses Ed25519 WebSocket auth; Binance US uses HMAC HTTP signing.
use_gtdTrueNative USD-M GTD policy described above.
use_position_idsTrueExpose Futures hedge‑side position IDs.
oms_typeNoneNone selects Futures netting; use Hedging for dual‑side mode.
default_taker_fee0.0004Fallback for exchange‑generated Futures fills.
futures_leveragesNoneInitial leverage by Futures symbol.
futures_margin_typesNoneInitial margin type by Futures symbol.
treat_expired_as_canceledFalseMap EXPIRED execution events to canceled events.
use_trade_liteFalseUse the lower‑latency USD‑M trade‑lite fill stream.
bnfcr_currencyUSDTCurrency used to resolve BNFCR balances and fees.
transport_backendTungsteniteWebSocket transport backend.

Legacy Python configuration

The following two tables describe the legacy Python adapter. Fields marked as Rust-only in these tables predate the v2 tables above; use the v2 field names and defaults above for new code.

Data client configuration options

OptionDefaultDescription
venueBINANCEVenue identifier used when registering the client.
api_keyNoneBinance API key; loaded from environment variables when omitted.
api_secretNoneBinance API secret; loaded from environment variables when omitted.
key_typeHMACDeprecated: key type is now auto‑detected from the API secret format. Only needed to force RSA.
account_typeSPOTAccount type for data endpoints (spot, margin, USDT futures, coin futures).
base_url_httpNoneOverride for the HTTP REST base URL.
base_url_wsNoneOverride for the WebSocket base URL.
proxy_urlNoneOptional proxy URL for HTTP and WebSocket transports.
usFalseRoute requests to Binance US endpoints when True.
environmentNoneBinance environment: LIVE, TESTNET, or DEMO. Defaults to LIVE when None.
update_instruments_interval_mins60Interval (minutes) between instrument catalogue refreshes.
use_agg_trade_ticksFalseWhen True, subscribe to aggregated trade ticks instead of raw trades. Futures WebSocket subscriptions always use @aggTrade regardless of this flag.
spot_market_data_modeSbeRust only. Spot market data transport (Sbe or Json). See Spot market data mode.
instrument_status_poll_secs3600Rust only. Interval (seconds) between exchange info polls to detect instrument status changes. Set to 0 to disable.
transport_backendSockudoRust only. WebSocket transport backend.

Execution client configuration options

OptionDefaultDescription
venueBINANCEVenue identifier used when registering the client.
api_keyNoneBinance API key; loaded from environment variables when omitted.
api_secretNoneBinance API secret; loaded from environment variables when omitted.
key_typeHMACDeprecated: key type is now auto‑detected from the API secret format. Only needed to force RSA (data clients only, RSA is not supported for execution).
account_typeSPOTAccount type for order placement (spot, margin, USDT futures, coin futures).
base_url_httpNoneOverride for the HTTP REST base URL.
base_url_wsNoneOverride for the WebSocket API base URL.
base_url_ws_streamNoneOverride for the WebSocket stream URL (futures user data event delivery).
proxy_urlNoneOptional proxy URL for HTTP and WebSocket transports.
usFalseRoute requests to Binance US endpoints when True.
environmentNoneBinance environment: LIVE, TESTNET, or DEMO. Defaults to LIVE when None.
use_gtdTrueUse native USD-M GTD. Set False only with strategy manage_gtd_expiry=True; GTD then maps to GTC with a warning.
use_reduce_onlyTrueWhen True, passes through reduce_only instructions to Binance.
use_position_idsTrueEnable Binance hedging position IDs; set False for virtual hedging.
use_trade_liteFalseUse TRADE_LITE execution events that include derived fees.
treat_expired_as_canceledFalseTreat EXPIRED execution types as CANCELED when True.
recv_window_ms5,000Receive window (milliseconds) for signed REST requests.
max_retriesNoneMaximum retry attempts for order submission/cancel/modify calls.
retry_delay_initial_msNoneInitial delay (milliseconds) between retry attempts.
retry_delay_max_msNoneMaximum delay (milliseconds) between retry attempts.
futures_leveragesNoneMapping of BinanceSymbol to initial leverage for futures accounts.
futures_margin_typesNoneMapping of BinanceSymbol to futures margin type (isolated/cross).
use_ws_tradingTrueUse the WebSocket trading API for order operations (Spot and USD-M Futures). When False, HTTP is used.
oms_typeNoneRust only. Set to Hedging for Futures accounts in dual‑side position mode; None uses Netting.
default_taker_fee0.0004Default taker fee rate for commission estimation on exchange‑generated fills (liquidation, ADL, settlement).
bnfcr_currencyUSDTUSD-M Futures Credits Trading Mode: currency that BNFCR balances and fees resolve to. See Futures Credits Trading Mode (BNFCR).
log_rejected_due_post_only_as_warningTrueLog post‑only rejections as warnings when True; otherwise as errors.
transport_backendSockudoRust only. WebSocket transport backend.

Legacy Python TradingNode setup

The following example remains for legacy v1 users. Its account_type, dictionary configuration, TradingNode, and BinanceLive*Factory names do not exist in the Rust-backed Python v2 API. For v2 node construction, follow the Python v2 data tester or Python v2 execution tester.

Add a BINANCE section to the legacy client configuration:

from nautilus_trader.adapters.binance import BINANCE
from nautilus_trader.live.node import TradingNode

config = TradingNodeConfig(
    ...,  # Omitted
    data_clients={
        BINANCE: {
            "api_key": "YOUR_BINANCE_API_KEY",
            "api_secret": "YOUR_BINANCE_API_SECRET",
            "account_type": "spot",  # {spot, usdt_futures, coin_futures}
            "base_url_http": None,  # Override with custom endpoint
            "base_url_ws": None,  # Override with custom endpoint
            "us": False,  # If client is for Binance US
        },
    },
    exec_clients={
        BINANCE: {
            "api_key": "YOUR_BINANCE_API_KEY",
            "api_secret": "YOUR_BINANCE_API_SECRET",
            "account_type": "spot",  # {spot, usdt_futures, coin_futures}
            "base_url_http": None,  # Override with custom endpoint
            "base_url_ws": None,  # Override with custom endpoint
            "us": False,  # If client is for Binance US
        },
    },
)

Then, create a TradingNode and add the client factories:

from nautilus_trader.adapters.binance import BINANCE
from nautilus_trader.adapters.binance import BinanceLiveDataClientFactory
from nautilus_trader.adapters.binance import BinanceLiveExecClientFactory
from nautilus_trader.live.node import TradingNode

# Instantiate the live trading node with a configuration
node = TradingNode(config=config)

# Register the client factories with the node
node.add_data_client_factory(BINANCE, BinanceLiveDataClientFactory)
node.add_exec_client_factory(BINANCE, BinanceLiveExecClientFactory)

# Finally build the node
node.build()

Futures Credits Trading Mode (BNFCR)

Binance Futures Credits Trading Mode is an EU regulatory mode in which the USD-M futures wallet, margin, PnL, and fees are denominated in BNFCR: an internal credit unit pegged 1:1 to USD that replaces stablecoin balances. Because BNFCR is not a tradable asset, the adapter maps it to the bnfcr_currency execution config option (default USDT) so account balances and commissions reconcile against the stablecoin the traded contracts settle in. Set bnfcr_currency to USDC when trading USDC-margined perpetuals. Any other unrecognized futures asset is registered as a generic crypto currency rather than failing.

Spot market data mode

spot_market_data_mode (Rust BinanceDataClientConfig) selects the Spot data transport. It affects Spot only; Futures is unchanged.

ModeCredentialsQuotes
SbeEd25519 (required)bestBidAsk
JsonNone (public)bookTicker

Sbe (default) uses Binance Simple Binary Encoding streams and requires Ed25519 keys (see Key types); the client refuses to connect without them. Json uses public streams with no credentials. Full Spot BookDeltas subscriptions use SBE diff-depth streams at 25ms in Sbe mode, or public JSON diff-depth streams at 100ms in Json mode, with REST snapshot synchronization. Explicit depth subscriptions use partial-book snapshots (see Order books).

:::note Exposed to Python as BinanceSpotMarketDataMode on nautilus_trader.core.nautilus_pyo3.binance; not on the legacy Python adapter config. :::

Key types

Binance supports three API key types: Ed25519, HMAC-SHA256, and RSA. The adapter auto-detects the key type from your API secret format, so no configuration is needed.

Ed25519 is strongly recommended. Binance recommends Ed25519 for its superior performance and security. A future version of NautilusTrader will require Ed25519 exclusively.

Key TypeData ClientsExecution ClientsStatus
Ed25519Recommended
HMACDeprecated, will be removed in a future version.
RSA-Deprecated, not supported for execution.

:::tip Switch to Ed25519 keys now. Generate an Ed25519 keypair and register it with Binance. See Generating Ed25519 keys below. :::

:::note Ed25519 keys must be provided in unencrypted PEM format (base64-encoded ASN.1/DER). The implementation automatically extracts the 32-byte seed from the DER structure. Encrypted (password-protected) PEM keys are not supported. If your key is encrypted, decrypt it first: openssl pkey -in encrypted.pem -out decrypted.pem :::

Generating Ed25519 keys

Option 1: OpenSSL (recommended)

# Generate private key (PKCS#8 PEM format)
openssl genpkey -algorithm ed25519 -out binance_ed25519_private.pem

# Extract public key
openssl pkey -in binance_ed25519_private.pem -pubout -out binance_ed25519_public.pem

Option 2: Binance Key Generator

Download the Binance Asymmetric Key Generator from the releases page and run it to generate a keypair.

Registering with Binance

  1. Log in to Binance and go to Profile -> API Management
  2. Click Create API and select Self-generated
  3. Paste the contents of your public key file (including the -----BEGIN PUBLIC KEY----- header/footer)
  4. Configure permissions (Enable Spot & Margin Trading, etc.)

Using with NautilusTrader

Set the private key as your API secret:

export BINANCE_API_KEY="your-api-key-from-binance"
export BINANCE_API_SECRET="$(cat binance_ed25519_private.pem)"

Or pass the PEM content directly in your configuration.

:::warning Keep your private key secure. Never share it or commit it to version control. :::

API credentials

Pass credentials directly to the configuration objects, or set the appropriate environment variables (see Environments for per-environment variables).

:::tip Use Ed25519 keys for all clients. HMAC keys still work for both data and execution clients, but Ed25519 offers better performance and will become the only supported key type in a future version. See Key types. :::

:::warning The BINANCE_ED25519_* and BINANCE_*_ED25519_* environment variables have been removed for Spot/Margin. For Futures, they are deprecated and will be removed in a future version. Rename them to BINANCE_API_KEY / BINANCE_API_SECRET (Ed25519 keys are now auto-detected). :::

When the trading node starts, you receive confirmation of whether your credentials are valid and have trading permissions.

Product type

Rust-backed v2 configs select one supported product with the product_type field and BinanceProductType enum:

  • SPOT
  • USD_M (USDT, USDC, or BNFCR collateral)
  • COIN_M (cryptocurrency collateral)

:::note Margin trading is not implemented. Other enum variants are rejected by the live clients and the standalone instrument loader. See Product support. :::

Base URL overrides

Override the default base URLs for both HTTP REST and WebSocket APIs. This is useful for configuring API clusters or when Binance has provided specialized endpoints.

Binance US

Set us=True on the Rust-backed v2 config for first-class Binance US Spot routing. Binance US is not a custom-URL alias: the switch selects api.binance.us, the public JSON stream, HMAC-signed HTTP execution, and the port 443 listen-key private stream with periodic keepalive.

See the official Binance US REST API, market streams, and user data stream documentation for the venue contracts behind this routing.

The supported combinations are deliberate:

  • Data: product_type=Spot, environment=Live, spot_market_data_mode=Json.
  • Execution: product_type=Spot, environment=Live; order entry uses HTTP and private events use the listen-key stream.
  • Futures, Testnet, Demo, and Spot SBE configurations with us=True fail validation.

Binance US public JSON covers live market data, depth snapshots, recent and aggregate trade history, and kline history. It uses account-wide maker and taker rates. Global Binance keeps its existing credential-free Spot JSON behavior with us=False and spot_market_data_mode=Json.

Environments

Binance provides three trading environments, each with separate API credentials and endpoints. The environment config option selects which to use.

EnvironmentConfigDescription
Liveenvironment="LIVE"Production trading with real funds (default).
Demoenvironment="DEMO"Demo Trading with simulated Spot and Futures funds.
Testnetenvironment="TESTNET"Legacy Spot and Futures test network.

Live (production)

The default environment for live trading with real funds. Uses your main Binance account credentials.

config = BinanceExecClientConfig(
    trader_id=TraderId.from_str("TRADER-001"),
    account_id=AccountId.from_str("BINANCE-001"),
    api_key="YOUR_API_KEY",
    api_secret="YOUR_API_SECRET",
    product_type=BinanceProductType.SPOT,
    # environment=BinanceEnvironment.LIVE (default)
)
VariableDescription
BINANCE_API_KEYLive API key.
BINANCE_API_SECRETLive API secret.

Demo trading

Practice trading with simulated funds on production infrastructure. Demo accounts use the same Binance login as your live account but trade with virtual balances.

How to get demo credentials:

  1. Log in at binance.com/en/demo-trading.
  2. Go to API Management and create a demo API key.
  3. Demo keys work for Spot and Futures demo endpoints.
EndpointURL
Spot HTTPdemo-api.binance.com
Spot WSdemo-stream.binance.com
USD-M HTTPdemo-fapi.binance.com
USD-M WSdemo-fstream.binance.com
COIN-M HTTPdemo-dapi.binance.com
COIN-M WSdemo-dstream.binance.com
config = BinanceExecClientConfig(
    trader_id=TraderId.from_str("TRADER-001"),
    account_id=AccountId.from_str("BINANCE-001"),
    api_key="YOUR_DEMO_API_KEY",
    api_secret="YOUR_DEMO_API_SECRET",
    product_type=BinanceProductType.SPOT,
    environment=BinanceEnvironment.DEMO,
)
VariableDescription
BINANCE_DEMO_API_KEYDemo API key.
BINANCE_DEMO_API_SECRETDemo API secret.

Testnet

A legacy test network with its own user accounts, balances, and order books. Prefer environment=BinanceEnvironment.DEMO for new simulated trading setups. Spot testnet remains at testnet.binance.vision; futures testnet endpoints may route through the Demo Trading infrastructure.

How to get Spot testnet credentials:

  1. Go to testnet.binance.vision.
  2. Log in with GitHub.
  3. Generate an API key (HMAC, RSA, or Ed25519).

Futures testnet: Existing configs with BinanceEnvironment.TESTNET continue to work, but new Futures testing should use BinanceEnvironment.DEMO.

config = BinanceExecClientConfig(
    trader_id=TraderId.from_str("TRADER-001"),
    account_id=AccountId.from_str("BINANCE-001"),
    api_key="YOUR_TESTNET_API_KEY",
    api_secret="YOUR_TESTNET_API_SECRET",
    product_type=BinanceProductType.SPOT,
    environment=BinanceEnvironment.TESTNET,
)
VariableDescription
BINANCE_TESTNET_API_KEYSpot testnet API key.
BINANCE_TESTNET_API_SECRETSpot testnet API secret.
BINANCE_FUTURES_TESTNET_API_KEYFutures testnet API key.
BINANCE_FUTURES_TESTNET_API_SECRETFutures testnet API secret.

:::note Testnet credentials are completely separate from your live account. Market data and liquidity differ from production. :::

Aggregated trades

Binance provides aggregated trade data endpoints as an alternative source of trades. Unlike the default trade endpoints, aggregated trade endpoints can return all ticks between a start_time and end_time.

Set use_agg_trade_ticks=True to use aggregated trades (False by default).

:::note For Futures (USD-M and COIN-M), the WebSocket trade subscription always uses @aggTrade. Binance only publishes aggregated trades on the Futures WebSocket; the legacy @trade stream was undocumented and has been silenced. The HTTP request_trade_ticks path continues to honour use_agg_trade_ticks. :::

Commission rate queries

The Rust-backed v2 instrument provider controls both selection and fee policy:

from nautilus_trader.adapters.binance import BinanceInstrumentProviderConfig

instrument_provider = BinanceInstrumentProviderConfig(
    load_all=False,
    load_ids=["BTCUSDT.BINANCE", "ETHUSDT.BINANCE"],
    filters={"quotes": ["USDT"], "bases": ["BTC", "ETH"]},
    log_warnings=True,
    query_commission_rates=True,
)

load_all=False selects only load_ids; venue filters then apply as an intersection. Supported filters are symbols, bases, and quotes, plus contract_types for Futures. Values are a string or non-empty list of strings and matching is case-insensitive. The v2 adapter rejects filter_callable: v1 accepted the field but its Binance provider did not apply the callable.

Every parsed instrument receives maker and taker fees:

  • Spot uses the account-wide rate when credentials are present, otherwise 0.1% maker and taker.
  • Futures uses the account VIP tier when credentials are present, otherwise VIP 0.
  • query_commission_rates=True opts Global Spot and Futures into rate-limited exact per-symbol queries. A failed or invalid query falls back to the account or tier rate for that symbol.
  • Binance US uses its account-wide commission rates because it does not expose the Global account/commission endpoint.

The exact-query behavior follows the Global Spot commission FAQ and the USD-M user commission rate endpoint.

Exact queries require credentials. Because they issue one private request per selected symbol, combine load_ids or filters with this option on large catalogues.

Parser warnings

Some Binance instruments cannot be parsed into Nautilus objects if they contain field values beyond what the platform handles. These instruments are skipped with a warning.

To suppress these warnings:

from nautilus_trader.adapters.binance import BinanceInstrumentProviderConfig

instrument_provider = BinanceInstrumentProviderConfig(
    load_all=True,
    log_warnings=False,
)

Futures hedge mode

Binance Futures Hedge mode allows holding both long and short positions on the same instrument simultaneously.

For Rust-backed Python v2, configure hedge mode on Binance, set oms_type=OmsType.HEDGING on BinanceExecClientConfig, and keep use_position_ids=True to track both venue position sides:

from nautilus_trader.adapters.binance import BinanceExecClientConfig
from nautilus_trader.adapters.binance import BinanceProductType
from nautilus_trader.model import AccountId
from nautilus_trader.model import OmsType
from nautilus_trader.model import TraderId

config = BinanceExecClientConfig(
    trader_id=TraderId.from_str("TRADER-001"),
    account_id=AccountId.from_str("BINANCE-001"),
    product_type=BinanceProductType.USD_M,
    oms_type=OmsType.HEDGING,
    use_position_ids=True,
)

Legacy v1 setup

The remaining TradingNodeConfig example is for the legacy v1 Python adapter. V2 does not expose use_reduce_only.

To use hedge mode:

  1. Configure hedge mode on Binance before starting the strategy.

  2. Set use_reduce_only=False in BinanceExecClientConfig (True by default).

    from nautilus_trader.adapters.binance import BINANCE
    
    config = TradingNodeConfig(
        ...,  # Omitted
        data_clients={
            BINANCE: BinanceDataClientConfig(
                api_key=None,  # 'BINANCE_API_KEY' env var
                api_secret=None,  # 'BINANCE_API_SECRET' env var
                account_type=BinanceAccountType.USDT_FUTURES,
                base_url_http=None,  # Override with custom endpoint
                base_url_ws=None,  # Override with custom endpoint
            ),
        },
        exec_clients={
            BINANCE: BinanceExecClientConfig(
                api_key=None,  # 'BINANCE_API_KEY' env var
                api_secret=None,  # 'BINANCE_API_SECRET' env var
                account_type=BinanceAccountType.USDT_FUTURES,
                base_url_http=None,  # Override with custom endpoint
                base_url_ws=None,  # Override with custom endpoint
                use_reduce_only=False,  # Must be disabled for Hedge mode
            ),
        },
    )
    
  3. When submitting an order, use the LONG or SHORT suffix in position_id to indicate position direction.

    class EMACrossHedgeMode(Strategy):
        (...,)  # Omitted
    
        def buy(self) -> None:
            order: MarketOrder = self.order_factory.market(
                instrument_id=self.instrument_id,
                order_side=OrderSide.BUY,
                quantity=self.instrument.make_qty(self.trade_size),
                # time_in_force=TimeInForce.FOK,
            )
    
            # LONG suffix is recognized as a long position by Binance adapter.
            position_id = PositionId(f"{self.instrument_id}-LONG")
            self.submit_order(order, position_id)
    
        def sell(self) -> None:
            order: MarketOrder = self.order_factory.market(
                instrument_id=self.instrument_id,
                order_side=OrderSide.SELL,
                quantity=self.instrument.make_qty(self.trade_size),
                # time_in_force=TimeInForce.FOK,
            )
            # SHORT suffix is recognized as a short position by Binance adapter.
            position_id = PositionId(f"{self.instrument_id}-SHORT")
            self.submit_order(order, position_id)
    

COIN-M / USD-M architecture

Binance COIN-M Futures (CM / DAPI) and USD-M Futures (UM / FAPI) share a unified architecture. This section covers the implications for the adapter.

See the Important CM-UM Integration Notice for the full details.

WebSocket streams

Market-data stream payloads include st (symbol type: 1 = UM, 2 = CM) on <symbol>@aggTrade, <symbol>@ticker, <symbol>@bookTicker, <symbol>@depth<levels>, <symbol>@miniTicker, and all !*@arr streams. UM-side single-symbol streams also include ps (pair symbol) on <symbol>@bookTicker, <symbol>@depth<levels>, <symbol>@miniTicker, and <symbol>@rpiDepth.

The adapter uses msgspec (Python) and serde (Rust) for JSON decoding, both of which ignore unknown fields by default. These fields are silently dropped.

All-market array streams (!ticker@arr, !miniTicker@arr, !bookTicker, !forceOrder@arr, !contractInfo) deliver merged UM + CM content on both fstream and dstream.

REST and WebSocket API

  • Order placement and modification acknowledgement responses do not include avgPrice / cumQuote / cumBase. The adapter sources fills from the user data stream. Query endpoints (GET /{f,d}api/v1/order, userTrades) still return these fields.
  • PUT /dapi/v1/order (COIN-M modify) requires both price and quantity. The adapter's _modify_order sends both fields, falling back to the cached order's values.
  • COIN-M conditional orders (STOP, TAKE_PROFIT, etc.) use the /dapi/v1/algoOrder endpoint. The adapter routes all futures conditional orders through the algo order API.
  • GET /dapi/v1/openOrders with an invalid symbol returns error -1121.

Rate-limit pools

UM and CM share Binance rate-limit pools: 2400 weight/min per IP, plus 1200 orders/min and 300 orders/10s per account. Rust futures HTTP clients in the same process share request-weight state across UM and CM for the same environment or custom endpoint scope and configured egress path. They share order-count state across UM and CM when authenticated with the same API key, regardless of egress path.

Live, testnet, demo, and unrelated custom endpoint scopes remain isolated. Different configured egress paths have separate request-weight state, while different API keys have separate order-count state. Separate processes and multiple API keys for one Binance account still require external coordination.

dualSidePosition

UM and CM share the same dualSidePosition setting. Changing it on either side affects both. Ensure both UM and CM have no open orders or positions before flipping the setting.

Contributing

:::info To contribute to the Binance adapter, see the contributing guide. :::