최초 프로젝트 업로드 (Script Auto Commit)

This commit is contained in:
2025-12-03 22:40:47 +09:00
commit dd9acf62a3
39 changed files with 5251 additions and 0 deletions

54
config/config.json Normal file
View File

@@ -0,0 +1,54 @@
{
"symbols_file": "config/symbols.txt",
"symbol_delay": 1.0,
"candle_count": 200,
"buy_check_interval_minutes": 240,
"stop_loss_check_interval_minutes": 60,
"profit_taking_check_interval_minutes": 240,
"balance_warning_interval_hours": 24,
"min_amount_threshold": 1e-8,
"loop": false,
"dry_run": true,
"max_threads": 3,
"telegram_parse_mode": "HTML",
"macd_fast": 12,
"macd_slow": 26,
"macd_signal": 9,
"adx_length": 14,
"adx_threshold": 25,
"sma_short": 5,
"sma_long": 200,
"trading_mode": "auto_trade",
"auto_trade": {
"enabled": true,
"buy_enabled": true,
"buy_amount_krw": 15000,
"min_order_value_krw": 5000,
"allowed_symbols": [],
"require_env_confirm": false,
"buy_price_slippage_pct": 0.2,
"loss_threshold": -5.0,
"profit_threshold_1": 10.0,
"profit_threshold_2": 30.0,
"drawdown_1": 5.0,
"drawdown_2": 15.0,
"telegram_max_retries": 3,
"order_monitor_max_errors": 5
},
"confirm": {
"confirm_via_file": false,
"confirm_timeout": 300
},
"monitor": {
"enabled": true,
"timeout": 120,
"poll_interval": 3,
"max_retries": 1
},
"notify": {
"order_filled": true,
"order_partial": true,
"order_cancelled": true,
"order_error": true
}
}