Spaces:
Running
Running
File size: 418 Bytes
b1f38ad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Database Configuration
DATABASE_URL=postgresql://user:password@localhost:5432/algoquant
# JWT Secret Key (change in production!)
SECRET_KEY=your-super-secret-key-change-this-in-production
# Algorithm Settings
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Trading Configuration
INITIAL_CAPITAL=10000
TRADE_INTERVAL_SECONDS=10
# API Settings (optional)
BINANCE_TESTNET_URL=https://testnet.binance.vision/api/v3
|