-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 1.04 KB
/
.env.example
File metadata and controls
33 lines (26 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Alpaca API Keys
ALPACA_API_KEY=your_alpaca_key_here
ALPACA_SECRET_KEY=your_alpaca_secret_here
ALPACA_PAPER_URL=https://paper-api.alpaca.markets
# IBKR Config (Optional)
IBKR_HOST=127.0.0.1
IBKR_PORT=7497 # 7497 is TWS Paper, 4002 is Gateway Paper
# Email Notification Settings (for daily reports)
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
SENDER_EMAIL=your_email@gmail.com
SENDER_PASSWORD=your_gmail_app_password
RECIPIENT_EMAIL=where_to_send_reports@example.com
# Deployment Toggles
ARM_LIVE_TRADING=NO
LOG_LEVEL=INFO
# TwelveData (optional, for faster S&P500-scale price ingestion)
# Put multiple keys comma-separated to rotate free-tier limits.
TWELVEDATA_API_KEYS=your_key_1,your_key_2
# Trained model endpoint (AI trading bot)
TRAINED_MODEL_INFERENCE_URL=https://your-trained-model-endpoint
TRAINED_MODEL_API_KEY=optional_model_api_key
# Alpha Vantage (optional fallback for symbols TwelveData blocks on free tiers)
ALPHAVANTAGE_API_KEYS=your_key_1,your_key_2
# FMP (optional, used by some backtesting scripts)
FMP_API_KEYS=your_fmp_key_1,your_fmp_key_2