-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
44 lines (38 loc) · 1.02 KB
/
.env.example
File metadata and controls
44 lines (38 loc) · 1.02 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
# LP Agent API (required) — get your key at https://portal.lpagent.io
LP_AGENT_API_KEY=lpagent_your_api_key_here
LP_AGENT_BASE_URL=https://api.lpagent.io/open-api/v1
VERBOSE_API_LOGS=false
# Wallet — either use OpenWallet (recommended) or a local keypair
# OWS_WALLET_NAME=agent-treasury
# SOLANA_KEYPAIR_PATH=~/.config/solana/id.json
# PRIVATE_KEY=base58_encoded_private_key
# Telegram alerts (optional)
# TELEGRAM_BOT_TOKEN=your_bot_token
# TELEGRAM_CHAT_ID=your_chat_id
# Strategy — Evil Panda defaults
STRATEGY_TYPE=Spot
RANGE_PERCENT_LOW=80
RANGE_PERCENT_HIGH=90
MAX_POSITIONS=3
POLL_INTERVAL_MS=60000
SCAN_INTERVAL_MS=300000
SLIPPAGE_BPS=100
STOP_LOSS_HOURS=24
# Scanner filters
MIN_VOL_24H=50000
MIN_LIQUIDITY=10000
MIN_MCAP=100000
MAX_MCAP=50000000
MIN_AGE_HR=1
MAX_AGE_HR=720
MIN_ORGANIC_SCORE=30
MIN_PRICE_CHANGE_1H=10
# Exit signal thresholds
RSI_PERIOD=2
RSI_EXIT_THRESHOLD=90
BB_PERIOD=20
BB_STD_DEV=2
# Circuit breaker
CIRCUIT_BREAKER_ENABLED=true
CIRCUIT_BREAKER_FAILURE_THRESHOLD=3
CIRCUIT_BREAKER_COOLDOWN_MS=300000