최초 프로젝트 업로드 (Script Auto Commit)
This commit is contained in:
54
config/config.json
Normal file
54
config/config.json
Normal 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"
|
||||
}
|
||||
}
|
||||
4
config/symbols.txt
Normal file
4
config/symbols.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
# symbols.txt - 한 줄에 하나의 주식 종목코드 입력
|
||||
# 빈 줄과 #으로 시작하는 줄은 무시됨
|
||||
005930
|
||||
000660
|
||||
Reference in New Issue
Block a user