Files
crypto_news/.env.example

37 lines
582 B
Plaintext
Raw Normal View History

2026-03-20 07:49:42 +09:00
# Exchange Configuration
EXCHANGE_ID=binance
API_KEY=your_api_key_here
API_SECRET=your_api_secret_here
SANDBOX_MODE=true
# Trading
TRADING_PAIRS=["BTC/USDT","ETH/USDT"]
DEFAULT_LEVERAGE=1
MAX_LEVERAGE=3
# ICT Parameters
SWING_LENGTH=50
MIN_CONFLUENCE_SCORE=3
# Timeframes
HTF_TIMEFRAME=4h
MTF_TIMEFRAME=1h
LTF_TIMEFRAME=15m
# Risk Management
MAX_RISK_PER_TRADE=0.02
MAX_DAILY_LOSS=0.05
MAX_CONCURRENT_POSITIONS=3
MAX_DRAWDOWN=0.15
# Telegram Notification
TELEGRAM_BOT_TOKEN=
TELEGRAM_CHAT_ID=
# Database
DB_PATH=data/trading.db
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/bot.log