전략편집기 템플릿 저장 기능 추가
This commit is contained in:
@@ -107,6 +107,7 @@ export interface ChartWorkspaceViewProps {
|
||||
mobileRightOpen: boolean;
|
||||
mobileRightTab: 'trade' | 'orderbook';
|
||||
marketTickers: Map<string, TickerData>;
|
||||
marketInfos: import('../hooks/useMarketTicker').MarketInfo[];
|
||||
marketLoading: boolean;
|
||||
usdRate: number;
|
||||
formalLogin: boolean;
|
||||
@@ -316,7 +317,7 @@ function ChartWorkspaceViewInner(props: ChartWorkspaceViewProps) {
|
||||
drawingsLocked, drawingsVisible, indicatorsVisible, magnetMode,
|
||||
snapToIndicator, keepLockedOnDelete, legend, showStats, showWatch,
|
||||
showAlert, showObjectTree, percentScale, magnifierActive, showMarketPanel,
|
||||
mobileRightOpen, mobileRightTab, marketTickers, marketLoading, usdRate,
|
||||
mobileRightOpen, mobileRightTab, marketTickers, marketInfos, marketLoading, usdRate,
|
||||
formalLogin, requireFormalLogin, chartVisible, menuPage, isMobile,
|
||||
indicators, effectiveIndicators, mainChartStyle, showMainChartModal,
|
||||
showBulkIndSettings, settingsModalId, ctxToolbar, drawingCtxToolbar,
|
||||
@@ -520,6 +521,7 @@ function ChartWorkspaceViewInner(props: ChartWorkspaceViewProps) {
|
||||
<MarketPanel
|
||||
open={showMarketPanel}
|
||||
tickers={marketTickers}
|
||||
marketInfos={marketInfos}
|
||||
loading={marketLoading}
|
||||
usdRate={usdRate}
|
||||
activeSymbol={layoutDef.count > 1 ? activeSlotSymbol : symbol}
|
||||
|
||||
Reference in New Issue
Block a user