algorithmic_trading / .env.example
Edwin Salguero
chore: enterprise-grade project structure, robust .gitignore, and directory cleanup
9289e29
raw
history blame contribute delete
749 Bytes
# Alpaca API Configuration
# Copy this file to .env and fill in your actual API credentials
# Alpaca API Keys (get from https://app.alpaca.markets/paper/dashboard/overview)
ALPACA_API_KEY=your_paper_api_key_here
ALPACA_SECRET_KEY=your_paper_secret_key_here
# For live trading (use with caution!)
# ALPACA_API_KEY=your_live_api_key_here
# ALPACA_SECRET_KEY=your_live_secret_key_here
# Optional: Override default URLs
# ALPACA_PAPER_URL=https://paper-api.alpaca.markets
# ALPACA_LIVE_URL=https://api.alpaca.markets
# ALPACA_DATA_URL=https://data.alpaca.markets
# Trading Configuration
TRADING_SYMBOL=AAPL
TRADING_CAPITAL=100000
TRADING_TIMEFRAME=1m
# Risk Management
MAX_POSITION_SIZE=100
MAX_DRAWDOWN=0.05
# Logging
LOG_LEVEL=INFO
LOG_DIR=logs