-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (29 loc) · 1.42 KB
/
.env.example
File metadata and controls
37 lines (29 loc) · 1.42 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
# Alpaca API Credentials
# Get yours at https://app.alpaca.markets/signup
ALPACA_API_KEY=your_api_key_here
ALPACA_SECRET_KEY=your_secret_key_here
# Set to "true" for paper trading (ALWAYS start with paper!)
ALPACA_PAPER=true
# OpenRouter API Key (https://openrouter.ai/keys)
# Used for: sentiment analysis + autonomous strategy agent
OPENROUTER_API_KEY=your_openrouter_key_here
# OPENROUTER_MODEL=google/gemini-2.5-flash # sentiment model (default)
# AGENT_MODEL=anthropic/claude-opus-4-6 # strategy agent model (default)
# Finnhub API Key (free at https://finnhub.io)
# Optional — enables insider sentiment + earnings calendar signals
FINNHUB_API_KEY=your_finnhub_key_here
# Portfolio dashboard starting cash (default: 100000)
# Update this if you reset or fund your paper account with a different amount
# STARTING_CASH=100000
# Telegram notifications (optional)
# TELEGRAM_BOT_TOKEN=your_bot_token_here
# TELEGRAM_CHAT_ID=your_chat_id_here
# SEC EDGAR User-Agent (required for EDGAR API access)
# SEC requires a valid company name + email in the User-Agent header
# SEC_EDGAR_USER_AGENT=MyCompany admin@example.com
# LOG_FORMAT=json # Set to 'json' for structured JSON logging (default: text)
# Dashboard authentication (optional)
# If both are set, HTTP Basic Auth is required on all dashboard routes
# The /health endpoint is always unauthenticated (for monitoring tools)
# DASHBOARD_USERNAME=admin
# DASHBOARD_PASSWORD=changeme