diff --git a/src/gas_adapter_parts/gdc_02_account_satellite.gs b/src/gas_adapter_parts/gdc_02_account_satellite.gs index 8b94192..a95b046 100644 --- a/src/gas_adapter_parts/gdc_02_account_satellite.gs +++ b/src/gas_adapter_parts/gdc_02_account_satellite.gs @@ -504,9 +504,8 @@ function _addTickerGates_(ctx, trailingStopUpdates) { tp2Price = Math.round(avgCost * THRESHOLDS.TP_SAT_2); tp2Qty = q2; } // Time_Stop: stage_1=60D, stage_2=30D - const stageLimit = posRec.entry_stage === "stage_1" ? THRESHOLDS.TIME_STOP_STAGE1 - : posRec.entry_stage === "stage_2" ? THRESHOLDS.TIME_STOP_STAGE2 : null; - if (stageLimit !== null && posRec.entry_date) { + const stageLimit = posRec.entry_stage === "stage_2" ? THRESHOLDS.TIME_STOP_STAGE2 : THRESHOLDS.TIME_STOP_STAGE1; // 기본 60일 + if (posRec.entry_date) { try { const entryMs = new Date(posRec.entry_date).getTime(); if (!isNaN(entryMs)) {