가상매매 시간봉 제거
This commit is contained in:
@@ -4,7 +4,6 @@ import {
|
||||
isVirtualTargetAddAllowed,
|
||||
virtualTargetLimitMessage,
|
||||
} from '../utils/virtualTargetLimits';
|
||||
import { normalizeStartCandleType } from './strategyStartNodes';
|
||||
import { syncVirtualTargetsToBackend } from './virtualLiveStrategySync';
|
||||
import { resolveVirtualTargetStrategyId } from './virtualTargetStrategy';
|
||||
import {
|
||||
@@ -18,8 +17,6 @@ import {
|
||||
export interface VirtualTargetMeta {
|
||||
koreanName?: string;
|
||||
englishName?: string;
|
||||
/** 추세검색 캔들 주기 → 투자대상 평가 분봉 기본값 */
|
||||
candleType?: string;
|
||||
}
|
||||
|
||||
export interface AddVirtualTargetOptions {
|
||||
@@ -51,7 +48,6 @@ export async function addVirtualTarget(
|
||||
strategyId: null,
|
||||
koreanName: meta.koreanName,
|
||||
englishName: en,
|
||||
candleType: meta.candleType ? normalizeStartCandleType(meta.candleType) : undefined,
|
||||
};
|
||||
|
||||
const next = [...targets, item];
|
||||
@@ -64,7 +60,6 @@ export async function addVirtualTarget(
|
||||
isPinned: false,
|
||||
executionType: session.executionType,
|
||||
positionMode: session.positionMode,
|
||||
candleType: item.candleType ?? '1m',
|
||||
skipWatchlistSync: true,
|
||||
skipGlobalTemplate: true,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user