Skip to main content
Version: nightly

Polymarket

Founded in 2020, Polymarket is the world’s largest decentralized prediction market platform, enabling traders to speculate on the outcomes of world events by buying and selling binary option contracts using cryptocurrency.

NautilusTrader provides a venue integration for data and execution via Polymarket's Central Limit Order Book (CLOB) API. The integration leverages the official Python CLOB client library to facilitate interaction with the Polymarket platform.

NautilusTrader supports multiple Polymarket signature types for order signing, providing flexibility for different wallet configurations. This integration ensures that traders can execute orders securely and efficiently across various wallet types, while NautilusTrader abstracts the complexity of signing and preparing orders for seamless execution.

Installation

To install NautilusTrader with Polymarket support:

pip install --upgrade "nautilus_trader[polymarket]"

To build from source with all extras (including Polymarket):

uv sync --all-extras

Examples

You can find live example scripts here.

Binary options

A binary option is a type of financial exotic option contract in which traders bet on the outcome of a yes-or-no proposition. If the prediction is correct, the trader receives a fixed payout; otherwise, they receive nothing.

All assets traded on Polymarket are quoted and settled in USDC.e (PoS), see below for more information.

Polymarket documentation

Polymarket offers comprehensive resources for different audiences:

  • Polymarket Learn: Educational content and guides for users to understand the platform and how to engage with it.
  • Polymarket CLOB API: Technical documentation for developers interacting with the Polymarket CLOB API.

Overview

This guide assumes a trader is setting up for both live market data feeds and trade execution. The Polymarket integration adapter includes multiple components, which can be used together or separately depending on the use case.

  • PolymarketWebSocketClient: Low-level WebSocket API connectivity (built on top of the Nautilus WebSocketClient written in Rust).
  • PolymarketInstrumentProvider: Instrument parsing and loading functionality for BinaryOption instruments.
  • PolymarketDataClient: A market data feed manager.
  • PolymarketExecutionClient: A trade execution gateway.
  • PolymarketLiveDataClientFactory: Factory for Polymarket data clients (used by the trading node builder).
  • PolymarketLiveExecClientFactory: Factory for Polymarket execution clients (used by the trading node builder).
note

Most users will simply define a configuration for a live trading node (as below), and won't need to necessarily work with these lower level components directly.

USDC.e (PoS)

USDC.e is a bridged version of USDC from Ethereum to the Polygon network, operating on Polygon's Proof of Stake (PoS) chain. This enables faster, more cost-efficient transactions on Polygon while maintaining backing by USDC on Ethereum.

The contract address is 0x2791bca1f2de4661ed88a30c99a7a9449aa84174 on the Polygon blockchain. More information can be found in this blog.

Wallets and accounts

To interact with Polymarket via NautilusTrader, you'll need a Polygon-compatible wallet (such as MetaMask).

Signature types

Polymarket supports multiple signature types for order signing and verification:

Signature TypeWallet TypeDescriptionUse Case
0EOA (Externally Owned Account)Standard EIP712 signatures from wallets with direct private key control.Default. Direct wallet connections (MetaMask, hardware wallets, etc.).
1Email/Magic Wallet ProxySmart contract wallet for email-based accounts (Magic Link). Only the email-associated address can execute functions.Polymarket Proxy associated with Email/Magic accounts. Requires funder address.
2Browser Wallet ProxyModified Gnosis Safe (1-of-1 multisig) for browser wallets.Polymarket Proxy associated with browser wallets. Enables UI verification. Requires funder address.
note

See also: Proxy wallet in the Polymarket documentation for more details about signature types and proxy wallet infrastructure.

NautilusTrader defaults to signature type 0 (EOA) but can be configured to use any of the supported signature types via the signature_type configuration parameter.

A single wallet address is supported per trader instance when using environment variables, or multiple wallets could be configured with multiple PolymarketExecutionClient instances.

note

Ensure your wallet is funded with USDC.e, otherwise you will encounter the "not enough balance / allowance" API error when submitting orders.

Setting allowances for Polymarket contracts

Before you can start trading, you need to ensure that your wallet has allowances set for Polymarket's smart contracts. You can do this by running the provided script located at /adapters/polymarket/scripts/set_allowances.py.

This script is adapted from a gist created by @poly-rodr.

note

You only need to run this script once per EOA wallet that you intend to use for trading on Polymarket.

This script automates the process of approving the necessary allowances for the Polymarket contracts. It sets approvals for the USDC token and Conditional Token Framework (CTF) contract to allow the Polymarket CLOB Exchange to interact with your funds.

Before running the script, ensure the following prerequisites are met:

  • Install the web3 Python package: pip install --upgrade web3==7.12.1.
  • Have a Polygon-compatible wallet funded with some MATIC (used for gas fees).
  • Set the following environment variables in your shell:
    • POLYGON_PRIVATE_KEY: Your private key for the Polygon-compatible wallet.
    • POLYGON_PUBLIC_KEY: Your public key for the Polygon-compatible wallet.

Once you have these in place, the script will:

  • Approve the maximum possible amount of USDC (using the MAX_INT value) for the Polymarket USDC token contract.
  • Set the approval for the CTF contract, allowing it to interact with your account for trading purposes.
note

You can also adjust the approval amount in the script instead of using MAX_INT, with the amount specified in fractional units of USDC.e, though this has not been tested.

Ensure that your private key and public key are correctly stored in the environment variables before running the script. Here's an example of how to set the variables in your terminal session:

export POLYGON_PRIVATE_KEY="YOUR_PRIVATE_KEY"
export POLYGON_PUBLIC_KEY="YOUR_PUBLIC_KEY"

Run the script using:

python nautilus_trader/adapters/polymarket/scripts/set_allowances.py

Script breakdown

The script performs the following actions:

  • Connects to the Polygon network via an RPC URL (https://polygon-rpc.com/).
  • Signs and sends a transaction to approve the maximum USDC allowance for Polymarket contracts.
  • Sets approval for the CTF contract to manage Conditional Tokens on your behalf.
  • Repeats the approval process for specific addresses like the Polymarket CLOB Exchange and Neg Risk Adapter.

This allows Polymarket to interact with your funds when executing trades and ensures smooth integration with the CLOB Exchange.

API keys

To trade with Polymarket, you'll need to generate API credentials. Follow these steps:

  1. Ensure the following environment variables are set:

    • POLYMARKET_PK: Your private key for signing transactions.
    • POLYMARKET_FUNDER: The wallet address (public key) on the Polygon network used for funding trades on Polymarket.
  2. Run the script using:

    python nautilus_trader/adapters/polymarket/scripts/create_api_key.py

The script will generate and print API credentials, which you should save to the following environment variables:

  • POLYMARKET_API_KEY
  • POLYMARKET_API_SECRET
  • POLYMARKET_PASSPHRASE

These can then be used for Polymarket client configurations:

  • PolymarketDataClientConfig
  • PolymarketExecClientConfig

Configuration

When setting up NautilusTrader to work with Polymarket, it’s crucial to properly configure the necessary parameters, particularly the private key.

Key parameters:

  • private_key: The private key for your wallet used to sign orders. The interpretation depends on your signature_type configuration. If not explicitly provided in the configuration, it will automatically source the POLYMARKET_PK environment variable.
  • funder: The USDC.e wallet address used for funding trades. If not provided, will source the POLYMARKET_FUNDER environment variable.
  • API credentials: You will need to provide the following API credentials to interact with the Polymarket CLOB:
    • api_key: If not provided, will source the POLYMARKET_API_KEY environment variable.
    • api_secret: If not provided, will source the POLYMARKET_API_SECRET environment variable.
    • passphrase: If not provided, will source the POLYMARKET_PASSPHRASE environment variable.
tip

We recommend using environment variables to manage your credentials.

Orders capability

Polymarket operates as a prediction market with a more limited set of order types and instructions compared to traditional exchanges.

Order types

Order TypeBinary OptionsNotes
MARKETBUY orders require quote quantity, SELL orders require base quantity.
LIMIT
STOP_MARKET-Not supported by Polymarket.
STOP_LIMIT-Not supported by Polymarket.
MARKET_IF_TOUCHED-Not supported by Polymarket.
LIMIT_IF_TOUCHED-Not supported by Polymarket.
TRAILING_STOP_MARKET-Not supported by Polymarket.

Quantity semantics

Polymarket interprets order quantities differently depending on the order type and side:

  • Limit orders interpret quantity as the number of conditional tokens (base units).
  • Market SELL orders also use base-unit quantities.
  • Market BUY orders interpret quantity as quote notional in USDC.e.

As a result, a market buy order submitted with a base-denominated quantity will execute far more size than intended.

warning

When submitting market BUY orders, set quote_quantity=True (or pre-compute the quote-denominated amount) and configure the execution engine with convert_quote_qty_to_base=False so the quote amount reaches the adapter unchanged. The Polymarket execution client denies base-denominated market buys to prevent unintended fills.

NautilusTrader now forwards market orders to Polymarket's native market-order endpoint, so the quote amount you specify for a BUY is executed directly (no more synthetic max-price limits).

from nautilus_trader.execution.config import ExecEngineConfig
from nautilus_trader.execution.engine import ExecutionEngine

# Temporary: disable automatic conversion until the behaviour is fully removed in a future release
config = ExecEngineConfig(convert_quote_qty_to_base=False)
engine = ExecutionEngine(msgbus=msgbus, cache=cache, clock=clock, config=config)

# Correct: Market BUY with quote quantity (spend $10 USDC)
order = strategy.order_factory.market(
instrument_id=instrument_id,
order_side=OrderSide.BUY,
quantity=instrument.make_qty(10.0),
quote_quantity=True, # Interpret as USDC.e notional
)
strategy.submit_order(order)

Execution instructions

InstructionBinary OptionsNotes
post_only-Not supported by Polymarket.
reduce_only-Not supported by Polymarket.

Time-in-force options

Time in forceBinary OptionsNotes
GTCGood Till Canceled.
GTDGood Till Date.
FOKFill or Kill.
IOCImmediate or Cancel (maps to FAK).
note

FAK (Fill and Kill) is Polymarket's terminology for Immediate or Cancel (IOC) semantics.

Advanced order features

FeatureBinary OptionsNotes
Order Modification-Cancellation functionality only.
Bracket/OCO Orders-Not supported by Polymarket.
Iceberg Orders-Not supported by Polymarket.

Batch operations

OperationBinary OptionsNotes
Batch Submit-Not supported by Polymarket.
Batch Modify-Not supported by Polymarket.
Batch Cancel-Not supported by Polymarket.

Position management

FeatureBinary OptionsNotes
Query positionsContract balance-based positions.
Position mode-Binary outcome positions only.
Leverage control-No leverage available.
Margin mode-No margin trading.

Order querying

FeatureBinary OptionsNotes
Query open ordersActive orders only.
Query order historyLimited historical data.
Order status updatesReal-time order state changes.
Trade historyExecution and fill reports.

Contingent orders

FeatureBinary OptionsNotes
Order lists-Not supported by Polymarket.
OCO orders-Not supported by Polymarket.
Bracket orders-Not supported by Polymarket.
Conditional orders-Not supported by Polymarket.

Precision limits

Polymarket enforces different precision constraints based on tick size and order type.

Binary Option instruments typically support up to 6 decimal places for amounts (with 0.0001 tick size), but market orders have stricter precision requirements:

  • FOK (Fill-or-Kill) market orders:

    • Sell orders: maker amount limited to 2 decimal places.
    • Taker amount: limited to 4 decimal places.
    • The product size × price must not exceed 2 decimal places.
  • Regular GTC orders: More flexible precision based on market tick size.

Tick size precision hierarchy

Tick SizePrice DecimalsSize DecimalsAmount Decimals
0.1123
0.01224
0.001325
0.0001426
note
  • The tick size precision hierarchy is defined in the py-clob-client ROUNDING_CONFIG.
  • FOK market order precision limits (2 decimals for maker amount) are based on API error responses documented in issue #121.
  • Tick sizes can change dynamically during market conditions, particularly when markets become one-sided.

Trades

Trades on Polymarket can have the following statuses:

  • MATCHED: Trade has been matched and sent to the executor service by the operator. The executor service submits the trade as a transaction to the Exchange contract.
  • MINED: Trade is observed to be mined into the chain, and no finality threshold is established.
  • CONFIRMED: Trade has achieved strong probabilistic finality and was successful.
  • RETRYING: Trade transaction has failed (revert or reorg) and is being retried/resubmitted by the operator.
  • FAILED: Trade has failed and is not being retried.

Once a trade is initially matched, subsequent trade status updates will be received via the WebSocket. NautilusTrader records the initial trade details in the info field of the OrderFilled event, with additional trade events stored in the cache as JSON under a custom key to retain this information.

Reconciliation

The Polymarket API returns either all active (open) orders or specific orders when queried by the Polymarket order ID (venue_order_id). The execution reconciliation procedure for Polymarket is as follows:

  • Generate order reports for all instruments with active (open) orders, as reported by Polymarket.
  • Generate position reports from contract balances reported by Polymarket, for instruments available in the cache.
  • Compare these reports with Nautilus execution state.
  • Generate missing orders to bring Nautilus execution state in line with positions reported by Polymarket.

Note: Polymarket does not directly provide data for orders which are no longer active.

warning

An optional execution client configuration, generate_order_history_from_trades, is currently under development. It is not recommended for production use at this time.

WebSockets

The PolymarketWebSocketClient is built on top of the high-performance Nautilus WebSocketClient base class, written in Rust.

Data

The main data WebSocket handles all market channel subscriptions received during the initial connection sequence, up to ws_connection_delay_secs. For any additional subscriptions, a new PolymarketWebSocketClient is created for each new instrument (asset).

Execution

The main execution WebSocket manages all user channel subscriptions based on the Polymarket instruments available in the cache during the initial connection sequence. When trading commands are issued for additional instruments, a separate PolymarketWebSocketClient is created for each new instrument (asset).

note

Polymarket does not support unsubscribing from channel streams once subscribed.

Limitations and considerations

The following limitations and considerations are currently known:

  • Order signing via the Polymarket Python client is slow, taking around one second.
  • Post-only orders are not supported.
  • Reduce-only orders are not supported.

Configuration

Data client configuration options

OptionDefaultDescription
venuePOLYMARKETVenue identifier registered for the data client.
private_keyNoneWallet private key; sourced from POLYMARKET_PK when omitted.
signature_type0Signature scheme (0 = EOA, 1 = email proxy, 2 = browser wallet proxy).
funderNoneUSDC.e funding wallet; sourced from POLYMARKET_FUNDER when omitted.
api_keyNoneAPI key; sourced from POLYMARKET_API_KEY when omitted.
api_secretNoneAPI secret; sourced from POLYMARKET_API_SECRET when omitted.
passphraseNoneAPI passphrase; sourced from POLYMARKET_PASSPHRASE when omitted.
base_url_httpNoneOverride for the REST base URL.
base_url_wsNoneOverride for the WebSocket base URL.
ws_connection_initial_delay_secs5Delay (seconds) before the first WebSocket connection to buffer subscriptions.
ws_connection_delay_secs0.1Delay (seconds) between subsequent WebSocket connection attempts.
update_instruments_interval_mins60Interval (minutes) between instrument catalogue refreshes.
compute_effective_deltasFalseCompute effective order book deltas for bandwidth savings.
drop_quotes_missing_sideTrueDrop quotes with missing bid/ask prices instead of substituting boundary values.

Execution client configuration options

OptionDefaultDescription
venuePOLYMARKETVenue identifier registered for the execution client.
private_keyNoneWallet private key; sourced from POLYMARKET_PK when omitted.
signature_type0Signature scheme (0 = EOA, 1 = email proxy, 2 = browser wallet proxy).
funderNoneUSDC.e funding wallet; sourced from POLYMARKET_FUNDER when omitted.
api_keyNoneAPI key; sourced from POLYMARKET_API_KEY when omitted.
api_secretNoneAPI secret; sourced from POLYMARKET_API_SECRET when omitted.
passphraseNoneAPI passphrase; sourced from POLYMARKET_PASSPHRASE when omitted.
base_url_httpNoneOverride for the REST base URL.
base_url_wsNoneOverride for the WebSocket base URL.
max_retriesNoneMaximum retry attempts for submit/cancel requests.
retry_delay_initial_msNoneInitial delay (milliseconds) between retries.
retry_delay_max_msNoneMaximum delay (milliseconds) between retries.
generate_order_history_from_tradesFalseGenerate synthetic order history from trade reports when True (experimental).
log_raw_ws_messagesFalseLog raw WebSocket payloads at INFO level when True.
info

For additional features or to contribute to the Polymarket adapter, please see our contributing guide.