initial commit with charts and assistant chat

This commit is contained in:
2026-03-02 00:08:19 -04:00
commit d907c5765e
1828 changed files with 50054 additions and 0 deletions

20
web/src/stores/chart.ts Normal file
View File

@@ -0,0 +1,20 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
export interface ChartState {
symbol: string
start_time: number | null
end_time: number | null
interval: string
}
export const useChartStore = defineStore('ChartStore', () => {
const chart_state = ref<ChartState>({
symbol: 'BINANCE:BTC/USDT',
start_time: null,
end_time: null,
interval: '15'
})
return { chart_state }
})