알림 전체닫기 오류 수정

This commit is contained in:
Macbook
2026-06-04 13:00:59 +09:00
parent 5740a9a59d
commit 128b589369
16 changed files with 513 additions and 126 deletions
+9
View File
@@ -475,6 +475,15 @@ export interface AppSettingsDto {
paperMinOrderKrw?: number;
paperAutoTradeEnabled?: boolean;
paperAutoTradeBudgetPct?: number;
/**
* 미체결 주문 체결 모드
* LIMIT_ONLY : 지정가 조건 충족 시에만 체결 (기본)
* NEXT_TICK : 다음 틱 강제 체결
* AUTO_CANCEL : 허용 이탈폭(paperOrderAutoCancelPct %) 초과 시 자동 취소
*/
paperOrderFillMode?: 'LIMIT_ONLY' | 'NEXT_TICK' | 'AUTO_CANCEL';
/** AUTO_CANCEL 모드 허용 이탈폭 (%) */
paperOrderAutoCancelPct?: number;
/** 가상매매 투자대상 목록 최대 종목 수 */
virtualTargetMaxCount?: number;
/** PAPER | LIVE | BOTH */