env.example 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # ========================================
  2. # Hyperliquid API Configuration (CCXT Style)
  3. # ========================================
  4. # Your Hyperliquid private key (required)
  5. HYPERLIQUID_PRIVATE_KEY=your_private_key_here
  6. # Your Hyperliquid secret key (may be optional depending on implementation)
  7. # Some CCXT exchanges require both apiKey and secret, others only one
  8. HYPERLIQUID_SECRET_KEY=your_secret_key_here
  9. # Network selection: true for testnet (safe), false for mainnet (real money!)
  10. HYPERLIQUID_TESTNET=true
  11. # ========================================
  12. # Trading Bot Configuration
  13. # ========================================
  14. # Default symbol to trade (Hyperliquid format)
  15. DEFAULT_TRADING_SYMBOL=BTC/USDC:USDC
  16. # Default trade amount (in base currency)
  17. DEFAULT_TRADE_AMOUNT=0.001
  18. # Risk management settings
  19. RISK_MANAGEMENT_ENABLED=true
  20. MAX_POSITION_SIZE=100
  21. STOP_LOSS_PERCENTAGE=2.0
  22. TAKE_PROFIT_PERCENTAGE=5.0
  23. # ========================================
  24. # Telegram Bot Configuration
  25. # ========================================
  26. # Get these from @BotFather in Telegram
  27. TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
  28. # Get this by running: python utils/get_telegram_chat_id.py
  29. TELEGRAM_CHAT_ID=your_chat_id_here
  30. # Enable/disable Telegram integration
  31. TELEGRAM_ENABLED=true
  32. # ========================================
  33. # Logging
  34. # ========================================
  35. # Options: DEBUG, INFO, WARNING, ERROR
  36. LOG_LEVEL=INFO