가상투자 종목카드박스 레이아웃 수정

This commit is contained in:
Macbook
2026-05-26 16:42:57 +09:00
parent 7cf43609dc
commit c0d21ac825
25 changed files with 1632 additions and 61 deletions
@@ -9,6 +9,7 @@ import {
getConditionValuePeriod,
getCompositePeriodPresetOptions,
getPeriodPresetOptions,
getPeriodSettingsLabel,
getThresholdBounds,
getThresholdPresetOptions,
hasEditableThreshold,
@@ -121,7 +122,7 @@ export default function ConditionNodeSettings({
</>
) : usesValuePeriodField(condition) ? (
<label className="se-flow-settings-field">
<span>{condition.indicatorType} ()</span>
<span>{getPeriodSettingsLabel(condition) ?? `${condition.indicatorType} 기간 (일)`}</span>
<ComboNumberInput
value={getConditionValuePeriod(condition, def)}
options={periodPresets}
@@ -1,6 +1,6 @@
/** 팔레트·Logic Expression 공통 — 지표 카테고리 */
export const BAND_INDICATORS = new Set(['MA', 'EMA', 'BOLLINGER', 'DONCHIAN', 'ICHIMOKU']);
export const BAND_INDICATORS = new Set(['MA', 'EMA', 'BOLLINGER', 'DONCHIAN', 'NEW_HIGH', 'NEW_LOW', 'ICHIMOKU']);
export type PaletteIndicatorCategory = 'band' | 'ind';