실시간 차트 멀티모드 수정
This commit is contained in:
@@ -581,6 +581,7 @@ function App() {
|
||||
|
||||
const chartSeriesPriceLabels = appDefaults.chartSeriesPriceLabels ?? true;
|
||||
const chartVolumeVisible = appDefaults.chartVolumeVisible ?? true;
|
||||
const chartLiveReceiveHighlight = appDefaults.chartLiveReceiveHighlight ?? true;
|
||||
const chartLegendOptions = appDefaults.chartLegendOptions;
|
||||
const paperTradingEnabled = appDefaults.paperTradingEnabled ?? true;
|
||||
const paperAutoTradeEnabled = appDefaults.paperAutoTradeEnabled ?? false;
|
||||
@@ -1700,6 +1701,8 @@ function App() {
|
||||
managerRef.current?.setVolumeVisible(v, wrapper?.clientHeight);
|
||||
slotRefs.current.forEach(slot => slot?.setVolumeVisible(v));
|
||||
}}
|
||||
chartLiveReceiveHighlight={chartLiveReceiveHighlight}
|
||||
onChartLiveReceiveHighlight={v => saveAppDef({ chartLiveReceiveHighlight: v })}
|
||||
chartLegendOptions={chartLegendOptions}
|
||||
onChartLegendOptionsChange={patch => {
|
||||
saveAppDef({
|
||||
@@ -2002,6 +2005,7 @@ function App() {
|
||||
onTradeOrderRequest={(req, idx) => applyTradeFill(req, idx)}
|
||||
chartSeriesPriceLabels={chartSeriesPriceLabels}
|
||||
chartVolumeVisible={chartVolumeVisible}
|
||||
chartLiveReceiveHighlight={chartLiveReceiveHighlight}
|
||||
chartRealtimeSource={chartRealtimeSource as 'BACKEND_STOMP' | 'UPBIT_DIRECT'}
|
||||
displayTimezone={displayTimezone}
|
||||
compactMode
|
||||
@@ -2038,6 +2042,7 @@ function App() {
|
||||
onTradeOrderRequest={(req, idx) => applyTradeFill(req, idx)}
|
||||
chartSeriesPriceLabels={chartSeriesPriceLabels}
|
||||
chartVolumeVisible={chartVolumeVisible}
|
||||
chartLiveReceiveHighlight={chartLiveReceiveHighlight}
|
||||
chartRealtimeSource={chartRealtimeSource as 'BACKEND_STOMP' | 'UPBIT_DIRECT'}
|
||||
displayTimezone={displayTimezone}
|
||||
compactMode
|
||||
|
||||
Reference in New Issue
Block a user