fix: 일목 구름 zOrder·배치 후 갱신 및 잘못된 기간 파라미터 복원

프로덕션에서 구름이 다른 primitive/시리즈에 가려지지 않도록 bottom zOrder를 적용하고,
지표 배치·재로드 후 구름 데이터를 다시 적용한다. DB에 1로 저장된 기간은 기본값으로 복원한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Macbook
2026-06-02 23:36:12 +09:00
parent 9c620b32e2
commit c6976a2e03
3 changed files with 20 additions and 1 deletions
+2 -1
View File
@@ -152,7 +152,8 @@ export function normalizeIchimokuConfig(config: IndicatorConfig): IndicatorConfi
};
for (const key of Object.keys(ICHIMOKU_DEFAULT_PARAMS)) {
const v = params[key];
if (typeof v !== 'number' || v < 1) {
// DB에 1로 저장된 잘못된 값은 spanA≈spanB → 구름 높이 0
if (typeof v !== 'number' || v < 2) {
params[key] = ICHIMOKU_DEFAULT_PARAMS[key];
}
}