알림 전체닫기 오류 수정

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 */
+3 -2
View File
@@ -9,14 +9,14 @@ export type TopMenuId = MenuPage;
export type SettingsCategoryId =
| 'general' | 'chart' | 'indicators' | 'backtest' | 'strategy'
| 'paper' | 'virtual' | 'live' | 'trend-search' | 'alert' | 'network' | 'admin';
| 'trading' | 'paper' | 'virtual' | 'live' | 'trend-search' | 'alert' | 'network' | 'admin';
export const TOP_MENU_IDS: TopMenuId[] = [
'dashboard', 'chart', 'paper', 'virtual', 'trend-search', 'strategy-editor', 'backtest', 'analysis-report', 'notifications', 'settings', 'verification-board',
];
export const SETTINGS_MENU_IDS: SettingsCategoryId[] = [
'general', 'chart', 'indicators', 'backtest', 'strategy', 'paper', 'virtual', 'live',
'general', 'chart', 'indicators', 'backtest', 'strategy', 'trading', 'live',
'trend-search', 'alert', 'network', 'admin',
];
@@ -45,6 +45,7 @@ export const MENU_LABELS: Record<string, string> = {
settings_indicators: '설정 · 보조지표',
settings_backtest: '설정 · 백테스팅',
settings_strategy: '설정 · 전략',
settings_trading: '설정 · 매매설정',
settings_paper: '설정 · 모의투자',
settings_virtual: '설정 · 가상매매',
settings_live: '설정 · 실거래',
+1
View File
@@ -24,6 +24,7 @@ export function isTradingMenuPage(page: string): boolean {
export const TRADING_SETTINGS_CATEGORIES = new Set([
'strategy',
'trading',
'paper',
'virtual',
'live',