전략편집기 기준값 보조지표 설정값 동기화
This commit is contained in:
@@ -103,9 +103,10 @@ export function compositeValueField(ind: string, period: number): string {
|
||||
}
|
||||
}
|
||||
|
||||
/** K_ 접두 임계값 필드 — 기간 파싱·복합지표 승격에서 제외 */
|
||||
/** K_ 접두 임계값·hline 역할 심볼 — 기간 파싱·복합지표 승격에서 제외 */
|
||||
export function isThresholdField(field?: string): boolean {
|
||||
return !!field && field.startsWith('K_');
|
||||
return !!field && (field.startsWith('K_')
|
||||
|| field === 'HL_OVER' || field === 'HL_MID' || field === 'HL_UNDER');
|
||||
}
|
||||
|
||||
const COMPOSITE_VALUE_PREFIX: Record<string, string> = {
|
||||
|
||||
Reference in New Issue
Block a user