-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
45 lines (38 loc) · 1.43 KB
/
env.example
File metadata and controls
45 lines (38 loc) · 1.43 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
34
35
36
37
38
39
40
41
42
43
44
45
# Anthropic API Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# IBKR Configuration
IBKR_HOST=127.0.0.1
IBKR_PORT=7497
IBKR_CLIENT_ID=1
IBKR_PAPER_TRADING=true
# Alpaca Markets Configuration
ALPACA_API_KEY=your_alpaca_api_key_here
ALPACA_SECRET_KEY=your_alpaca_secret_key_here
# Use https://paper-api.alpaca.markets for paper trading (default)
# Use https://api.alpaca.markets for live trading
ALPACA_BASE_URL=https://paper-api.alpaca.markets
# Alpha Vantage Configuration
# Get your free API key at: https://www.alphavantage.co/support/#api-key
ALPHA_VANTAGE_API_KEY=your_alpha_vantage_api_key_here
# Trading Configuration
TRADING_MODE=paper
MAX_POSITION_SIZE=0.05
MAX_PORTFOLIO_HEAT=0.15
DAILY_LOSS_LIMIT=0.02
# API Server Configuration
API_HOST=127.0.0.1
API_PORT=8000
# Supabase Configuration (for API authentication)
# Get these from: Supabase Dashboard > Settings > API
SUPABASE_URL=your_supabase_project_url
SUPABASE_ANON_KEY=your_supabase_anon_key
# JWT Secret: Supabase Dashboard > Settings > API > JWT Secret
SUPABASE_JWT_SECRET=your_supabase_jwt_secret
# Service Role Key: Supabase Dashboard > Settings > API > service_role (needed for DeepSignals writes)
SUPABASE_SERVICE_ROLE_KEY=
# DeepSignals Configuration
# Quiver Quantitative (congressional trading data)
# Get your API key at: https://www.quiverquant.com/
QUIVER_API_KEY=
# Alpaca options data feed: 'indicative' (free) or 'opra' (paid, real-time)
ALPACA_OPTIONS_FEED=indicative