매매 시그널 알림 화면 수정

This commit is contained in:
Macbook
2026-05-29 00:46:20 +09:00
parent cbad62a5b0
commit e43b5cbd5a
45 changed files with 2186 additions and 415 deletions
@@ -0,0 +1,12 @@
/** 차트 pane에서 지표 설정 저장 직후 — App 전역 기본값 병합 1회 스킵 */
let skipNextChartDefaultsSync = false;
export function markChartIndicatorSaveCommitted(): void {
skipNextChartDefaultsSync = true;
}
export function consumeSkipNextChartDefaultsSync(): boolean {
if (!skipNextChartDefaultsSync) return false;
skipNextChartDefaultsSync = false;
return true;
}