알림목록 지표없음 문제 수정

This commit is contained in:
Macbook
2026-06-07 02:39:02 +09:00
parent 63c56a11b2
commit b6b056c3b5
2 changed files with 12 additions and 4 deletions
@@ -70,14 +70,14 @@ public class LiveConditionStatusService {
return empty(market, strategyId);
}
// 데이터 수신 보장 — 평가 전 해당 종목·봉 타입 pin + 동기 warm-up
// 마켓 구독 + 동기 warm-up 시작 — 현재 봉 유무에 따라 즉시 or 수집 후 평가
Set<String> timeframes = new LinkedHashSet<>();
for (PendingCond p : pending) {
String tf = LiveStrategyTimeframeService.normalize(p.timeframe());
timeframes.add(tf);
subscriptionManager.ensureBarsReadySync(market, tf, 60);
subscriptionManager.ensureMarketPinned(market, tf);
}
subscriptionManager.ensureBarsReadySync(market, "1m", 60);
subscriptionManager.ensureMarketPinned(market, "1m");
List<LiveConditionRowDto> rows = new ArrayList<>();
int met = 0;