# ======================================== # Hyperliquid API Configuration (CCXT Style) # ======================================== # Your Hyperliquid private key (required) HYPERLIQUID_PRIVATE_KEY=your_private_key_here # Your Hyperliquid secret key (may be optional depending on implementation) # Some CCXT exchanges require both apiKey and secret, others only one HYPERLIQUID_SECRET_KEY=your_secret_key_here # Network selection: true for testnet (safe), false for mainnet (real money!) HYPERLIQUID_TESTNET=true # ======================================== # Trading Bot Configuration # ======================================== # Default symbol to trade (Hyperliquid format) DEFAULT_TRADING_SYMBOL=BTC/USDC:USDC # Default trade amount (in base currency) DEFAULT_TRADE_AMOUNT=0.001 # Risk management settings RISK_MANAGEMENT_ENABLED=true MAX_POSITION_SIZE=100 STOP_LOSS_PERCENTAGE=2.0 TAKE_PROFIT_PERCENTAGE=5.0 # ======================================== # Telegram Bot Configuration # ======================================== # Get these from @BotFather in Telegram TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here # Get this by running: python utils/get_telegram_chat_id.py TELEGRAM_CHAT_ID=your_chat_id_here # Enable/disable Telegram integration TELEGRAM_ENABLED=true # ======================================== # Logging # ======================================== # Options: DEBUG, INFO, WARNING, ERROR LOG_LEVEL=INFO