shape editing

This commit is contained in:
2026-03-02 22:49:45 -04:00
parent f4da40706c
commit bf7af2b426
18 changed files with 2236 additions and 209 deletions

View File

@@ -6,6 +6,7 @@ export interface ChartState {
start_time: number | null
end_time: number | null
interval: string
selected_shapes: string[]
}
export const useChartStore = defineStore('ChartStore', () => {
@@ -13,7 +14,8 @@ export const useChartStore = defineStore('ChartStore', () => {
symbol: 'BINANCE:BTC/USDT',
start_time: null,
end_time: null,
interval: '15'
interval: '15',
selected_shapes: []
})
return { chart_state }