Files
backup_openclaw/projects/auto-trader/strategy_config.json
2026-03-30 19:30:25 +09:00

46 lines
1.2 KiB
JSON

{
"mode": "virtual-safe",
"enable_orders": false,
"poll_seconds": 60,
"api_call_interval_ms": 300,
"api_retry_count": 2,
"api_retry_backoff_ms": 600,
"max_symbols": 5,
"buy_budget_per_trade": 1000000,
"max_position_value_per_symbol": 1200000,
"max_daily_buys_per_symbol": 1,
"sell_all_on_signal": true,
"symbols": [
{"symbol": "000660", "name": "SK하이닉스", "enabled": true},
{"symbol": "005930", "name": "삼성전자", "enabled": true},
{"symbol": "039030", "name": "이오테크닉스", "enabled": true}
],
"rules": {
"buy_gap_strength": {
"enabled": true,
"min_pct_vs_prev_close": 1.0,
"require_above_open": true
},
"buy_reclaim_after_dip": {
"enabled": true,
"dip_below_open_pct": 0.5,
"reclaim_above_open": true,
"rebound_from_low_pct": 1.0
},
"buy_near_day_high": {
"enabled": true,
"max_distance_from_high_pct": 0.5,
"require_positive_day": true
},
"sell_take_profit": {
"enabled": true,
"take_profit_pct": 3.0
},
"sell_stop_loss_or_fade": {
"enabled": true,
"stop_loss_pct": -2.0,
"fade_from_open_pct": -1.5
}
}
}