From 1135efc5bebb4459ddf930cd71a2d71168f27b7f Mon Sep 17 00:00:00 2001 From: 21in7 Date: Sun, 22 Mar 2026 22:30:39 +0900 Subject: [PATCH] fix: update weekly report to XRP-only with production params MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SYMBOLS: 3 symbols → XRPUSDT only PROD_PARAMS: atr_sl_mult 2.0→1.5, atr_tp_mult 2.0→4.0 Co-Authored-By: Claude Opus 4.6 (1M context) --- scripts/weekly_report.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/weekly_report.py b/scripts/weekly_report.py index ecd9576..9e15df6 100644 --- a/scripts/weekly_report.py +++ b/scripts/weekly_report.py @@ -30,10 +30,10 @@ from src.notifier import DiscordNotifier # ── 프로덕션 파라미터 ────────────────────────────────────────────── -SYMBOLS = ["XRPUSDT", "TRXUSDT", "DOGEUSDT"] +SYMBOLS = ["XRPUSDT"] PROD_PARAMS = { - "atr_sl_mult": 2.0, - "atr_tp_mult": 2.0, + "atr_sl_mult": 1.5, + "atr_tp_mult": 4.0, "signal_threshold": 3, "adx_threshold": 25, "volume_multiplier": 2.5,