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

This commit is contained in:
2025-12-03 22:37:46 +09:00
commit ed7084dd8f
30 changed files with 3254 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,
"loop": true,
"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": 1000000,
"min_order_value": 100000,
"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,
"partial_sell_ratio": 0.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
},
"kiwoom": {
"account_number": "YOUR_ACCOUNT_NUMBER"
}
}