update refactor

This commit is contained in:
KienVT9 2025-07-08 18:03:36 +07:00
parent 01abc7e446
commit 55ad0607f3
39 changed files with 4304 additions and 584 deletions

0
src/dao/analysis.ts Normal file
View file

10
src/dao/candles.ts Normal file
View file

@ -0,0 +1,10 @@
export interface Candle {
time: string;
timestamp: number;
open: number;
high: number;
low: number;
close: number;
volume: number;
turnover: number;
}