Customizable Configuration

Users can tailor agents to their preferences, including:

  • Technical Indicators: Integrate indicators such as Moving Averages (MA), Relative Strength Index (RSI), Bollinger Bands, MACD, and more.

  • News and Data Feeds: Pull real-time news from major sources like Bloomberg, Reuters, CoinDesk, and social platforms like X for sentiment analysis.

  • Sentiment Data Integration: Advanced sentiment analysis from multiple sources, including social media sentiment scores, on-chain sentiment metrics, and aggregated data from APIs like LunarCrush or Santiment. Users can configure weights for bullish/bearish signals to influence trading decisions.

  • Risk Management: Set parameters for stop-loss, take-profit, leverage levels, and position sizing.

indicators:
  - type: RSI
    period: 14
    overbought: 70
    oversold: 30
  - type: MACD
    fast_period: 12
    slow_period: 26
    signal_period: 9
  sentiment_sources:
  - type: news
    url: "https://api.coindesk.com/v1/news"
    keywords: ["bitcoin", "ethereum", "perp"]
  - type: social
    url: "https://api.twitter.com/2/search"  # Via X API for real-time vibes
    query: "crypto market OR perp trading"
    sentiment_model: "vader"  # Or custom models like BERT-based
  - type: api
    url: "https://api.lunarcrush.com/v2"
    metrics: ["social_volume", "sentiment_score"]
    api_key: "your_key_here"

Last updated