-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
77 lines (58 loc) · 2.27 KB
/
Copy pathenv.example
File metadata and controls
77 lines (58 loc) · 2.27 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copy to .env and fill in values before running
# Alpaca (crypto)
ALPACA_API_KEY=
ALPACA_API_SECRET=
ALPACA_BASE_URL=https://paper-api.alpaca.markets # paper default; remove for live
# IBKR (futures)
IBKR_HOST=127.0.0.1
IBKR_PORT=4002 # 4002=paper, 4001=live
IBKR_CLIENT_ID=1
# arcticdb — leave unset to use local arctic_data/ directory
# ARCTIC_URI=lmdb:///absolute/path/to/arctic_data
# Redis
REDIS_URL=redis://redis:6379/0
# Risk / evaluation
EVAL_PROFIT_TARGET=3000.0 # evaluation profit goal in USD
RISK_PER_TRADE_PCT=0.01 # fraction of balance risked per trade (0.005–0.01)
# Symbols
# CRYPTO_SYMBOLS=["BTC/USD","ETH/USD","SOL/USD"]
# FUTURES_SYMBOLS=["ES","NQ","CL","GC"]
# OpenTelemetry
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_SERVICE_NAME=quantworkstation
# --- Epic 10: Macro Data (store as exports in ~/.zshrc, not here) ---
# FRED (free): https://fred.stlouisfed.org/docs/api/api_key.html
FRED_API_KEY=
# EIA Open Data (free): https://www.eia.gov/opendata/
EIA_API_KEY=
# NOAA Climate Data (free): https://www.ncdc.noaa.gov/cdo-web/webservices/v2
NOAA_API_KEY=
# Nasdaq Data Link / Quandl (free tier): https://data.nasdaq.com
# Note: verify BWAVE/BDTI dataset is available on free tier before implementing QWS-1008
NDAQ_API_KEY=
# Financial Modeling Prep (free, 250 calls/day): https://financialmodelingprep.com/developer/docs
FMP_API_KEY=
# USDA NASS Quick Stats (free): https://quickstats.nass.usda.gov/api
USDA_API_KEY=
# NASA Earthdata (free): https://urs.earthdata.nasa.gov/
NASA_EARTHDATA_TOKEN=
# No key needed: Baker Hughes (public Excel), CFTC COT (public CSV), Google Trends (pytrends)
# --- Graph (Neo4j + qw CLI) ---
# Set to false to run without any Neo4j connectivity requirements.
QW_GRAPH_ENABLED=true
# Bolt endpoint used by graph writes/reads.
QW_GRAPH_HOST=127.0.0.1
QW_GRAPH_PORT=7687
QW_GRAPH_SCHEME=bolt
# Local dev auth default from the contract; override in your private .env.
QW_GRAPH_USER=neo4j
QW_GRAPH_PASSWORD=password
QW_GRAPH_NEO4J_AUTH=neo4j/password
# Connection timeout in seconds (contract default: 3).
QW_GRAPH_TIMEOUT_SECONDS=3
# AI Curation Settings
QW_AI_ANALYST_ENDPOINT=http://localhost:5001
QW_AI_ANALYST_MODEL=Llama-4-Scout-17B-16E-Instruct
QW_AI_PROVIDER=local
QW_AI_NOTE_MAX_CHARS=280
QW_AI_TEMPERATURE=0.1