Trade autonomously on Polymarket using AI Agents
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Polymarket Agents is a developer framework and set of utilities for building AI agents for Polymarket.
Note: This repository is a fork of https://github.com/Polymarket/agents
This code is free and publicly available under MIT License open source license (terms of service)!
This repo is inteded for use with Python 3.9
Clone the repository
git clone https://github.com/{username}/polymarket-agents.git
cd polymarket-agents
Create the virtual environment
virtualenv --python=python3.9 .venv
Activate the virtual environment
.venv\Scripts\activate
source .venv/bin/activate
Install the required dependencies:
pip install -r requirements.txt
For AI Model Support (BTC Prediction & Backtesting):
If you want to use PyTorch-based models for BTC price prediction, install additional dependencies:
pip install torch transformers accelerate protobuf pyarrow
pip install "gluonts[torch]<=0.14.4" # For Lag-Llama support (optional)
Or use conda for better dependency management:
conda create -n polymarket python=3.10
conda activate polymarket
pip install -r requirements.txt
pip install torch transformers accelerate protobuf pyarrow
Set up your environment variables:
.env file in the project root directorycp .env.example .env
POLYGON_WALLET_PRIVATE_KEY=""
OPENAI_API_KEY=""
Load your wallet with USDC.
Try the command line interface...
python scripts/python/cli.py
Or just go trade!
python agents/application/trade.py
Note: If running the command outside of docker, please set the following env var:
export PYTHONPATH="."
If running with docker is preferred, we provide the following scripts:
./scripts/bash/build-docker.sh
./scripts/bash/run-docker-dev.sh
The Polymarket Agents architecture features modular components that can be maintained and extended by individual community members.
Polymarket Agents connectors standardize data sources and order types.
Chroma.py: chroma DB for vectorizing news sources and other API data. Developers are able to add their own vector database implementations.
Gamma.py: defines GammaMarketClient class, which interfaces with the Polymarket Gamma API to fetch and parse market and event metadata. Methods to retrieve current and tradable markets, as well as defined information on specific markets and events.
Polymarket.py: defines a Polymarket class that interacts with the Polymarket API to retrieve and manage market and event data, and to execute orders on the Polymarket DEX. It includes methods for API key initialization, market and event data retrieval, and trade execution. The file also provides utility functions for building and signing orders, as well as examples for testing API interactions.
Objects.py: data models using Pydantic; representations for trades, markets, events, and related entities.
The framework includes a complete system for predicting BTC prices and backtesting strategies on Polymarket BTC 15-minute markets.
Components:
agents/connectors/btc_data.py): Fetches historical BTC OHLCV data from Binance API with automatic cachingagents/models/btc_predictor.py): AI model wrapper supporting:
chronos-bolt: Amazon's Chronos T5-based forecasting model (PyTorch) ✅ Workinglag-llama: Probabilistic forecasting model (requires gluonts setup) ⚠️ Partialbaseline: Simple momentum-based predictor (fallback)agents/backtesting/market_fetcher.py): Retrieves closed/resolved BTC markets from Polymarketagents/backtesting/btc_backtester.py): End-to-end backtesting with performance metricsUsage Example:
from agents.backtesting.btc_backtester import BTCBacktester
from datetime import datetime, timedelta, timezone
# Initialize backtester with Chronos-Bolt model
backtester = BTCBacktester(model_name='chronos-bolt', lookback_minutes=200)
# Run backtest on historical markets
results_df = backtester.run_backtest(
start_date=datetime.now(timezone.utc) - timedelta(days=7),
end_date=datetime.now(timezone.utc),
max_markets=50,
enrich_with_btc_data=True
)
# View results
print(results_df[['market_id', 'predicted_direction', 'actual_direction', 'is_correct', 'pnl']])
Testing:
# Test BTC data fetcher
python scripts/python/test_btc_fetcher.py
# Test model integration
python scripts/python/test_model_integration.py
# Test backtesting framework
python scripts/python/test_backtesting.py
For detailed documentation, see docs/BTC_PREDICTION_STATUS.md.
Files for managing your local environment, server set-up to run the application remotely, and cli for end-user commands.
cli.py is the primary user interface for the repo. Users can run various commands to interact with the Polymarket API, retrieve relevant news articles, query local data, send data/prompts to LLMs, and execute trades in Polymarkets.
Commands should follow this format:
python scripts/python/cli.py command_name [attribute value] [attribute value]
Example:
get-all-markets
Retrieve and display a list of markets from Polymarket, sorted by volume.
python scripts/python/cli.py get-all-markets --limit <LIMIT> --sort-by <SORT_BY>
BTC Prediction & Backtesting:
# Run a backtest with Chronos-Bolt model
python scripts/python/test_backtesting.py
This will:
If you would like to contribute to this project, please follow these steps:
Please run pre-commit hooks before making contributions. To initialize them:
pre-commit install
The framework supports multiple AI models for BTC price forecasting:
Chronos-Bolt (chronos-bolt) ✅ Fully Integrated
amazon/chronos-t5-tiny (HuggingFace)Lag-Llama (lag-llama) ⚠️ Partial Support
time-series-foundation-models/Lag-LlamaBaseline (baseline) ✅ Always Available
Core (always required):
httpx - API requestspandas - Data manipulationnumpy - Numerical operationspython-dotenv - Environment variable managementFor AI Models:
torch - PyTorch (for model inference)transformers - HuggingFace transformers (for model loading)accelerate - Model acceleration utilitiesprotobuf - Protocol buffers (for Chronos)pyarrow - Parquet file support (for caching)For Lag-Llama (optional):
gluonts[torch]<=0.14.4 - Time series toolkitSee docs/BTC_PREDICTION_STATUS.md for detailed status and implementation notes.
This project is licensed under the MIT License. See the LICENSE file for details.
For any questions or inquiries, please contact liam@polymarket.com or reach out at www.greenestreet.xyz
Enjoy using the CLI application! If you encounter any issues, feel free to open an issue on the repository.
Terms of Service prohibit US persons and persons from certain other jurisdictions from trading on Polymarket (via UI & API and including agents developed by persons in restricted jurisdictions), although data and information is viewable globally.
Python
100.0%
Trade autonomously on Polymarket using AI Agents
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Polymarket Agents is a developer framework and set of utilities for building AI agents for Polymarket.
Note: This repository is a fork of https://github.com/Polymarket/agents
This code is free and publicly available under MIT License open source license (terms of service)!
This repo is inteded for use with Python 3.9
Clone the repository
git clone https://github.com/{username}/polymarket-agents.git
cd polymarket-agents
Create the virtual environment
virtualenv --python=python3.9 .venv
Activate the virtual environment
.venv\Scripts\activate
source .venv/bin/activate
Install the required dependencies:
pip install -r requirements.txt
For AI Model Support (BTC Prediction & Backtesting):
If you want to use PyTorch-based models for BTC price prediction, install additional dependencies:
pip install torch transformers accelerate protobuf pyarrow
pip install "gluonts[torch]<=0.14.4" # For Lag-Llama support (optional)
Or use conda for better dependency management:
conda create -n polymarket python=3.10
conda activate polymarket
pip install -r requirements.txt
pip install torch transformers accelerate protobuf pyarrow
Set up your environment variables:
.env file in the project root directorycp .env.example .env
POLYGON_WALLET_PRIVATE_KEY=""
OPENAI_API_KEY=""
Load your wallet with USDC.
Try the command line interface...
python scripts/python/cli.py
Or just go trade!
python agents/application/trade.py
Note: If running the command outside of docker, please set the following env var:
export PYTHONPATH="."
If running with docker is preferred, we provide the following scripts:
./scripts/bash/build-docker.sh
./scripts/bash/run-docker-dev.sh
The Polymarket Agents architecture features modular components that can be maintained and extended by individual community members.
Polymarket Agents connectors standardize data sources and order types.
Chroma.py: chroma DB for vectorizing news sources and other API data. Developers are able to add their own vector database implementations.
Gamma.py: defines GammaMarketClient class, which interfaces with the Polymarket Gamma API to fetch and parse market and event metadata. Methods to retrieve current and tradable markets, as well as defined information on specific markets and events.
Polymarket.py: defines a Polymarket class that interacts with the Polymarket API to retrieve and manage market and event data, and to execute orders on the Polymarket DEX. It includes methods for API key initialization, market and event data retrieval, and trade execution. The file also provides utility functions for building and signing orders, as well as examples for testing API interactions.
Objects.py: data models using Pydantic; representations for trades, markets, events, and related entities.
The framework includes a complete system for predicting BTC prices and backtesting strategies on Polymarket BTC 15-minute markets.
Components:
agents/connectors/btc_data.py): Fetches historical BTC OHLCV data from Binance API with automatic cachingagents/models/btc_predictor.py): AI model wrapper supporting:
chronos-bolt: Amazon's Chronos T5-based forecasting model (PyTorch) ✅ Workinglag-llama: Probabilistic forecasting model (requires gluonts setup) ⚠️ Partialbaseline: Simple momentum-based predictor (fallback)agents/backtesting/market_fetcher.py): Retrieves closed/resolved BTC markets from Polymarketagents/backtesting/btc_backtester.py): End-to-end backtesting with performance metricsUsage Example:
from agents.backtesting.btc_backtester import BTCBacktester
from datetime import datetime, timedelta, timezone
# Initialize backtester with Chronos-Bolt model
backtester = BTCBacktester(model_name='chronos-bolt', lookback_minutes=200)
# Run backtest on historical markets
results_df = backtester.run_backtest(
start_date=datetime.now(timezone.utc) - timedelta(days=7),
end_date=datetime.now(timezone.utc),
max_markets=50,
enrich_with_btc_data=True
)
# View results
print(results_df[['market_id', 'predicted_direction', 'actual_direction', 'is_correct', 'pnl']])
Testing:
# Test BTC data fetcher
python scripts/python/test_btc_fetcher.py
# Test model integration
python scripts/python/test_model_integration.py
# Test backtesting framework
python scripts/python/test_backtesting.py
For detailed documentation, see docs/BTC_PREDICTION_STATUS.md.
Files for managing your local environment, server set-up to run the application remotely, and cli for end-user commands.
cli.py is the primary user interface for the repo. Users can run various commands to interact with the Polymarket API, retrieve relevant news articles, query local data, send data/prompts to LLMs, and execute trades in Polymarkets.
Commands should follow this format:
python scripts/python/cli.py command_name [attribute value] [attribute value]
Example:
get-all-markets
Retrieve and display a list of markets from Polymarket, sorted by volume.
python scripts/python/cli.py get-all-markets --limit <LIMIT> --sort-by <SORT_BY>
BTC Prediction & Backtesting:
# Run a backtest with Chronos-Bolt model
python scripts/python/test_backtesting.py
This will:
If you would like to contribute to this project, please follow these steps:
Please run pre-commit hooks before making contributions. To initialize them:
pre-commit install
The framework supports multiple AI models for BTC price forecasting:
Chronos-Bolt (chronos-bolt) ✅ Fully Integrated
amazon/chronos-t5-tiny (HuggingFace)Lag-Llama (lag-llama) ⚠️ Partial Support
time-series-foundation-models/Lag-LlamaBaseline (baseline) ✅ Always Available
Core (always required):
httpx - API requestspandas - Data manipulationnumpy - Numerical operationspython-dotenv - Environment variable managementFor AI Models:
torch - PyTorch (for model inference)transformers - HuggingFace transformers (for model loading)accelerate - Model acceleration utilitiesprotobuf - Protocol buffers (for Chronos)pyarrow - Parquet file support (for caching)For Lag-Llama (optional):
gluonts[torch]<=0.14.4 - Time series toolkitSee docs/BTC_PREDICTION_STATUS.md for detailed status and implementation notes.
This project is licensed under the MIT License. See the LICENSE file for details.
For any questions or inquiries, please contact liam@polymarket.com or reach out at www.greenestreet.xyz
Enjoy using the CLI application! If you encounter any issues, feel free to open an issue on the repository.
Terms of Service prohibit US persons and persons from certain other jurisdictions from trading on Polymarket (via UI & API and including agents developed by persons in restricted jurisdictions), although data and information is viewable globally.
Python
100.0%