알림목록 지표로딩 문제 수정

This commit is contained in:
Macbook
2026-06-07 03:12:03 +09:00
parent ffecd7f01b
commit 9bde682b4e
2 changed files with 4 additions and 2 deletions
@@ -47,7 +47,8 @@ function walk(
return;
}
if (node.type === 'CONDITION' && node.condition) {
// StrategyDslToTa4jAdapter 와 동일: type 미설정(구버전 DSL) 시 CONDITION 으로 처리
if ((!node.type || node.type === 'CONDITION') && node.condition) {
const c = node.condition;
const key = `${side}:${timeframe}:${c.indicatorType}:${c.conditionType}:${c.targetValue ?? ''}:${c.leftField ?? ''}`;
if (seen.has(key)) return;