Skip to main content

Production-ready crypto trading analysis agent with LLM hardening

Project description

AutoDegen ๐Ÿš€

PyPI version Python 3.9+ License: MIT

Production-ready cryptocurrency trading analysis agent with enterprise-grade LLM hardening.

๐ŸŒŸ Features

๐Ÿ›ก๏ธ Enterprise-Grade LLM Security

  • Zero Meta Commentary: Complete elimination of "I'll analyze..." and "The key will be..." responses
  • Structured Output Enforcement: Guaranteed consistent report format with Pydantic validation
  • Production Hardening: Circuit breaker, retry logic, timeout handling, and tool call firewall

๐Ÿ“Š Comprehensive Market Analysis

  • Multi-Expert AI Coordination: Technical, market, and news sentiment analysis
  • Real-Time Data: Integration with Binance, DeFiLlama, and crypto news sources
  • Advanced Technical Indicators: RSI, MACD, moving averages, Smart Money Concepts
  • Multi-Timeframe Analysis: 1h, 4h, daily perspectives with confluence signals

โšก High-Performance Architecture

  • Async/Await: Non-blocking operations for maximum throughput
  • Resilience Patterns: Circuit breaker prevents cascade failures
  • Comprehensive Testing: 52+ test cases with 100% production readiness validation
  • Type Safety: Full type hints with mypy compatibility

๐Ÿš€ Quick Start

Installation

# Basic installation
pip install autodegen

# With CLI support  
pip install autodegen[cli]

# Development installation
pip install autodegen[dev]

Environment Setup

Create a .env file or set environment variables:

FIREWORKS_API_KEY=your_fireworks_api_key      # Required
OPENAI_API_KEY=your_openai_key               # Optional  
BINANCE_API_KEY=your_binance_key             # Optional
BINANCE_API_SECRET=your_binance_secret       # Optional

Python API Usage

import asyncio
from autodegen import TradingAgent

async def main():
    # Initialize agent
    agent = TradingAgent()
    
    # Get structured analysis
    analysis = await agent.analyze("BTC", timeframe="4h")
    
    print(analysis.title)        # **COMPREHENSIVE TECHNICAL ANALYSIS: BTC**
    print(analysis.market_state) # Current market conditions...
    print(analysis.outlook)      # Bullish bias maintained above...
    
    # Get market overview
    overview = await agent.get_market_overview()
    print(overview)

# Run analysis
asyncio.run(main())

CLI Usage

# Analyze a cryptocurrency
autodegen analyze BTC --timeframe 4h --format rich

# Get market overview  
autodegen market

# Check system health
autodegen health

# List supported symbols
autodegen symbols

๐Ÿ“– Advanced Usage

Structured vs Unstructured Output

# Structured output (recommended)
structured_analysis = await agent.analyze("ETH", structured=True)
print(f"Market State: {structured_analysis.market_state}")
print(f"Trading Levels: {structured_analysis.trading_levels}")

# Text output  
text_analysis = await agent.analyze("ETH", structured=False)
print(text_analysis)  # Raw markdown-formatted text

Error Handling

from autodegen import TradingAgent, APIError, ConfigurationError

try:
    agent = TradingAgent()
    result = await agent.analyze("BTC")
except ConfigurationError as e:
    print(f"Setup error: {e}")
except APIError as e:
    print(f"API error: {e} (status: {e.status_code})")
except Exception as e:
    print(f"Unexpected error: {e}")

Health Monitoring

# Check system health
health = await agent.health_check()

if health["status"] == "healthy":
    print("All systems operational")
else:
    print(f"System status: {health['status']}")
    for component, status in health["components"].items():
        print(f"  {component}: {status}")

๐Ÿ—๏ธ Architecture

AutoDegen
โ”œโ”€โ”€ ๐Ÿง  LLM Core (Production Hardened)
โ”‚   โ”œโ”€โ”€ Circuit Breaker Pattern
โ”‚   โ”œโ”€โ”€ Retry with Exponential Backoff  
โ”‚   โ”œโ”€โ”€ Tool Call Firewall
โ”‚   โ””โ”€โ”€ Structured Output Enforcement
โ”‚
โ”œโ”€โ”€ ๐Ÿ“Š Market Analysis Engine
โ”‚   โ”œโ”€โ”€ Technical Expert (Charts & Indicators)
โ”‚   โ”œโ”€โ”€ Market Expert (Liquidity & Volume)
โ”‚   โ””โ”€โ”€ News Expert (Sentiment Analysis)
โ”‚
โ”œโ”€โ”€ ๐Ÿ”Œ Data Sources
โ”‚   โ”œโ”€โ”€ Binance API (Price & Volume)
โ”‚   โ”œโ”€โ”€ DeFiLlama (DeFi Metrics)
โ”‚   โ””โ”€โ”€ News APIs (Market Sentiment)
โ”‚
โ””โ”€โ”€ ๐Ÿ›ก๏ธ Security & Reliability
    โ”œโ”€โ”€ Input Validation & Sanitization
    โ”œโ”€โ”€ Rate Limiting & Quotas
    โ””โ”€โ”€ Comprehensive Logging

๐Ÿ“ˆ Supported Cryptocurrencies

Major Coins: BTC, ETH, BNB, SOL, ADA, XRP, DOT, AVAX

DeFi Tokens: UNI, COMP, CRV, LINK, AAVE

Layer 1s: ATOM, NEAR, ALGO, FTM, ICP

And more: MATIC, VET, FLOW, SAND, MANA

Use autodegen symbols to see the full list

๐Ÿ”ง Configuration

API Keys Priority

  1. Constructor parameters
  2. Environment variables
  3. .env file (if python-dotenv installed)

Timeout & Retry Settings

agent = TradingAgent()

# Custom timeout and structured output
analysis = await agent.analyze(
    symbol="BTC",
    timeout=60.0,        # 60 second timeout
    structured=True      # Enforce schema validation
)

๐Ÿงช Production Hardening

This agent includes enterprise-grade production hardening tested with 52+ comprehensive test cases:

๐Ÿ›ก๏ธ LLM Response Security

  • Meta Commentary Elimination: Zero tolerance for "I'll analyze...", "The key will be..." responses
  • Structured Schema Enforcement: Guaranteed report format with required sections
  • Content Validation: Multi-layer filtering of banned tokens and meta statements

๐Ÿ”’ Security Features

  • Tool Call Firewall: Blocks dangerous function calls (execute_code, run_shell)
  • Input Sanitization: Automatic cleanup of potentially harmful content
  • Circuit Breaker: Prevents cascade failures with automatic recovery

โšก Reliability Patterns

  • Retry Logic: Exponential backoff with jitter (3 attempts default)
  • Timeout Handling: Graceful degradation on slow responses
  • Health Monitoring: Real-time component status checking

๐Ÿงช Testing & Quality

# Install development dependencies
pip install autodegen[dev]

# Run the production quality test battery  
python -m pytest tests/run_quality_battery.py

# Test specific components
python -m pytest tests/ -v

Quality Metrics:

  • โœ… 52/52 tests passing (100% success rate)
  • โœ… Zero meta commentary leakage
  • โœ… 100% structured output compliance
  • โœ… Enterprise resilience patterns validated

๐Ÿค Contributing

We welcome contributions! Please see our Contributing Guide.

Development Setup

git clone https://github.com/taygundogan/cryptotrading-agent
cd cryptotrading-agent
pip install -e .[dev]

# Run tests
python tests/run_quality_battery.py

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Built with production-grade LLM hardening techniques
  • Inspired by enterprise trading system architectures
  • Powered by Fireworks AI, OpenAI, and crypto data providers

๐Ÿ“ž Support


โš ๏ธ Disclaimer: This tool is for educational and informational purposes only. Cryptocurrency trading involves significant risk. Always do your own research and consider your risk tolerance before making trading decisions.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autodegen-0.2.2.tar.gz (25.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autodegen-0.2.2-py3-none-any.whl (27.8 kB view details)

Uploaded Python 3

File details

Details for the file autodegen-0.2.2.tar.gz.

File metadata

  • Download URL: autodegen-0.2.2.tar.gz
  • Upload date:
  • Size: 25.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for autodegen-0.2.2.tar.gz
Algorithm Hash digest
SHA256 119a78c3466f516f81b29181705f3758ffa95ad5efef0d49060f89c431aafe03
MD5 64940e2563c269c42667d8e32b726af8
BLAKE2b-256 6f8c9c717665a60a3ce563f18e162cb8913ced6693415d0ea0077d701c895097

See more details on using hashes here.

File details

Details for the file autodegen-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: autodegen-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 27.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for autodegen-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3a37692294baa840de5cd1d6d1a15d156193b8472ab29e6e5d1580b8b9f840c6
MD5 67e1eb1e0251c003446361722a92678e
BLAKE2b-256 b7cf23782ee31620e6492ce9689fa55bbdab22fec95d6faecacc69fbbaad1404

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page