실시간 차트 보조지표 탭 문제 수정

This commit is contained in:
Macbook
2026-05-28 01:26:53 +09:00
parent 4f6694b206
commit 98dfb3613c
19 changed files with 801 additions and 182 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { INDICATOR_REGISTRY } from './indicatorRegistry';
import { MAIN_INDICATOR_TYPES } from './indicatorMainTab';
import { getOrderedMainIndicatorTypes } from './indicatorMainTabOrder';
import type { IndicatorCustomTab } from './indicatorCustomTabsStorage';
export type IndicatorTabApplySource =
@@ -8,7 +8,7 @@ export type IndicatorTabApplySource =
export function resolveIndicatorTabApplyTypes(source: IndicatorTabApplySource): string[] {
if (source.kind === 'main') {
return [...MAIN_INDICATOR_TYPES].filter(
return getOrderedMainIndicatorTypes().filter(
type => INDICATOR_REGISTRY.some(d => d.type === type),
);
}