Composer Trade SDK¶
Unofficial Python SDK for Composer.trade API.
Installation¶
Quick Start¶
from composer import ComposerClient
client = ComposerClient(
api_key="your_api_key",
api_secret="your_api_secret"
)
# List portfolios
portfolios = client.portfolio.list()
# Get account info
account = client.accounts.get()
Features¶
- Portfolio Management - View and manage your portfolios
- Backtesting - Test trading strategies against historical data
- Market Data - Access real-time and historical market data
- Trading - Deploy and manage trading strategies
- AI Agents - Interact with AI-powered trading agents
API Reference¶
See API Reference for full documentation.