import type { MenuPage } from '../components/TopMenuBar'; /** 실시간 ticker REST·WS가 필요한 메뉴 (전략편집기·설정 등 제외) */ export const TICKER_FEED_PAGES: ReadonlySet = new Set([ 'chart', 'paper', 'virtual', 'trend-search', 'notifications', ]); export function isTickerFeedPage(page: MenuPage): boolean { return TICKER_FEED_PAGES.has(page); }