-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
1 lines (1 loc) · 1.07 KB
/
Copy path.env.example
File metadata and controls
1 lines (1 loc) · 1.07 KB
1
# Environment Variables Template \n\n## Exchange API Configuration \nEXCHANGE_NAME=binance \nAPI_KEY=your_api_key_here \nAPI_SECRET=your_api_secret_here \nSANDBOX_MODE=true \n\n## Trading Configuration \nINITIAL_BALANCE=10000 \nRISK_PER_TRADE=0.02 \nMAX_POSITION_SIZE=0.1 \nMAX_DRAWDOWN=0.20 \nSTOP_LOSS_PERCENT=0.05 \nTAKE_PROFIT_PERCENT=0.10 \nTRADING_PAIRS=BTC/USDT,ETH/USDT,ADA/USDT \n\n## AI Model Configuration \nSEQUENCE_LENGTH=60 \nUPDATE_INTERVAL=3600 \nRETRAIN_INTERVAL=86400 \n\n## Technical Indicators \nRSI_PERIOD=14 \nRSI_OVERBOUGHT=70 \nRSI_OVERSOLD=30 \nMACD_FAST=12 \nMACD_SLOW=26 \nBOLLINGER_PERIOD=20 \nBOLLINGER_STD_DEV=2 \n\n## Logging Configuration \nLOG_LEVEL=INFO \nLOG_FILE=trading_bot.log \n\n## Notification Settings \nEMAIL_ENABLED=false \nEMAIL_ADDRESS=your_email@example.com \nDISCORD_ENABLED=false \nDISCORD_WEBHOOK=your_discord_webhook_url \n\n## Database Configuration \nDATABASE_URL=sqlite:///trading_bot.db \n\n## Backtesting Configuration \nBACKTEST_ENABLED=false \nBACKTEST_START_DATE=2023-01-01 \nBACKTEST_END_DATE=2024-01-01 \nBACKTEST_INITIAL_CAPITAL=10000